*** empty log message ***

This commit is contained in:
2007-02-23 08:17:51 +00:00
parent 4ba998a693
commit 8c4383a64f
29 changed files with 537 additions and 1045 deletions

View File

@ -1,6 +1,6 @@
OUT = asecmn
C_SRCS = str.c
C_SRCS = mem.c str.c
C_OBJS = $(C_SRCS:.c=.obj)
CC = bcc32

View File

@ -1,5 +1,5 @@
/*
* $Id: mem.h,v 1.1 2007-02-23 07:13:58 bacon Exp $
* $Id: mem.h,v 1.2 2007-02-23 08:17:51 bacon Exp $
*
* {License}
*/
@ -16,7 +16,7 @@ extern "C" {
void* ase_memcpy (void* dst, const void* src, ase_size_t n);
void* ase_memset (void* dst, int val, ase_size_t n);
int ase_memcmp (const void* s1, const void* s2, ase_size_t n);
int ase_memcmp (const void* s1, const void* s2, ase_size_t n);
#ifdef __cplusplus
}

View File

@ -1,10 +1,11 @@
/*
* $Id: str.c,v 1.4 2007-02-23 06:43:30 bacon Exp $
* $Id: str.c,v 1.5 2007-02-23 08:17:51 bacon Exp $
*
* {License}
*/
#include <ase/cmn/str.h>
#include <ase/cmn/mem.h>
ase_size_t ase_strlen (const ase_char_t* str)
{
@ -309,7 +310,7 @@ ase_size_t ase_str_ncat (ase_str_t* str, const ase_char_t* s, ase_size_t len)
if (tmp == ASE_NULL) return (ase_size_t)-1;
if (str->buf != ASE_NULL)
{
ASE_MEMCPY (str->mmgr, tmp, str->buf,
ase_memcpy (tmp, str->buf,
ASE_SIZEOF(ase_char_t)*(str->capa+1));
ASE_FREE (str->mmgr, str->buf);
}