add XP_STRCAT

This commit is contained in:
ehouse 2004-05-01 13:45:50 +00:00
parent 86804a7996
commit 9ce2c70a4b

View file

@ -70,6 +70,7 @@ typedef XP_U32 XP_Time;
#define XP_MEMCPY(d,s,l) memcpy((d),(s),(l))
#define XP_MEMCMP( a1, a2, l ) memcmp((a1),(a2),(l))
#define XP_STRLEN(s) strlen((char*)(s))
#define XP_STRCAT(d,s) strcat((d),(s))
#define XP_STRCMP(s1,s2) strcmp((char*)(s1),(char*)(s2))
#define XP_STRNCMP(s1,s2,l) strncmp((char*)(s1),(char*)(s2),(l))
#define XP_SNPRINTF wince_snprintf