diff options
Diffstat (limited to '')
-rwxr-xr-x | include/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index b8bce80..6f3c84f 100755 --- a/include/common.h +++ b/include/common.h @@ -76,6 +76,7 @@ int sprintf(char *buffer, const char *format, ...); int snprintf(char *buffer, int buff_size, const char *format, ...);
char *strcat(const char *destination, const char *source);
void *memset(void *ptr, int value, unsigned int num);
+int memcmp(const void *ptr1, const void *ptr2, unsigned int num);
void *AllocFromGameHeap1(u32 size);
void FreeFromGameHeap1(void *block);
|