*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-23 06:31:06 +00:00
parent b8ecc04150
commit 5708a992c0
2 changed files with 28 additions and 3 deletions

25
ase/cmn/makefile.in Normal file
View File

@ -0,0 +1,25 @@
OUT = asecmn
C_SRCS = str.c
C_OBJS = $(C_SRCS:.c=.o)
CC = @CC@
AR = ar
RANLIB = @RANLIB@
CFLAGS = @CFLAGS@ -I@abs_top_builddir@/..
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
all: lib
lib: $(C_OBJS)
$(AR) cr lib$(OUT).a $(C_OBJS)
if [ "$(RANLIB)" = "ranlib" ]; then ranlib lib$(OUT).a; fi
clean:
rm -rf $(OBJS) lib$(OUT).a *.o
.SUFFIXES: .c .o
.c.o:
$(CC) $(CFLAGS) -c $<

View File

@ -1,5 +1,5 @@
/* /*
* $Id: str.c,v 1.2 2007-02-22 14:46:43 bacon Exp $ * $Id: str.c,v 1.3 2007-02-23 06:31:06 bacon Exp $
* *
* {License} * {License}
*/ */
@ -124,12 +124,12 @@ ase_size_t ase_str_ncat (ase_str_t* str, const ase_char_t* s, ase_size_t len)
else else
{ {
tmp = (ase_char_t*) ASE_MALLOC ( tmp = (ase_char_t*) ASE_MALLOC (
str->mmgr, ASE_SIZEOF(ase_char_t) * (capa + 1)); str->mmgr, ASE_SIZEOF(ase_char_t)*(capa+1));
if (tmp == ASE_NULL) return (ase_size_t)-1; if (tmp == ASE_NULL) return (ase_size_t)-1;
if (str->buf != ASE_NULL) if (str->buf != ASE_NULL)
{ {
ASE_MEMCPY (str->mmgr, tmp, str->buf, ASE_MEMCPY (str->mmgr, tmp, str->buf,
ASE_SIZEOF(ase_char_t) * (str->capa + 1)); ASE_SIZEOF(ase_char_t)*(str->capa+1));
ASE_FREE (str->mmgr, str->buf); ASE_FREE (str->mmgr, str->buf);
} }
} }