mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
add XP_STRCAT
This commit is contained in:
parent
86804a7996
commit
9ce2c70a4b
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue