4 #define StrCpy(s1,s2) strcpy(s1,s2)
5 #define StrCat(s1,s2) strcat(s1,s2)
6 #define StrLen(s) strlen(s)
7 #define StrChr(s,c) strchr(s,c)
8 #define StrStr(s1,s2) strstr(s1,s2)
9 #define StrCmp(s1,s2) strcmp(s1,s2)
10 #define StrNCmp(s1,s2,n) strncmp(s1,s2,n)
11 #define MemSet(p,c,n) memset(p,c,n)
12 #define MemCmp(p1,p2,n) memcmp(p1,p2,n)