Forgotten changes that should have been part of the r45368 64-bit fix.
[AROS.git] / rom / filesys / CDVDFS / src / clib_stuff.h
blob8c26c9be1e7e4f18aa18c649dcd348a0f00e8baa
1 #ifndef CLIB_STUFF_H
2 #define CLIB_STUFF_H
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)
14 #endif