mirror of
https://github.com/daeken/Zookeeper.git
synced 2025-04-02 10:52:54 -04:00
12 lines
No EOL
374 B
C++
12 lines
No EOL
374 B
C++
#include "NightBeliever.hpp"
|
|
|
|
typedef unsigned long size_t;
|
|
|
|
void *memcpy(void *dest, const void *src, size_t n);
|
|
char *strcpy(char *dest, const char *src);
|
|
void *memset(void * ptr, int value, size_t num);
|
|
size_t strlen(const char *str);
|
|
int strcmp(const char *str1, const char *str2);
|
|
int stricmp(const char *str1, const char *str2);
|
|
int tolower(int c);
|
|
int toupper(int c); |