add XP_STRCAT

This commit is contained in:
ehouse 2004-07-25 00:43:23 +00:00
parent b20c196e62
commit 63efe9a9ce

View file

@ -76,6 +76,8 @@ unsigned short frank_flipShort(unsigned short s);
#define XP_STRLEN(s) strlen((char*)(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_STRCAT(d,s) strcat((d),(s))
#define XP_SNPRINTF frank_snprintf
#define XP_MIN(a,b) ((a)<(b)?(a):(b))