2009-01-28 16:13:38 +01:00
|
|
|
|
2011-01-25 13:53:48 +01:00
|
|
|
#ifndef AUTOBUILD
|
2009-01-28 16:13:38 +01:00
|
|
|
#define NULL ((void*)0)
|
|
|
|
|
|
|
|
void* memset(void *mem, int c, unsigned size);
|
|
|
|
void* memcpy(void *dst, const void *src, unsigned size);
|
2011-01-25 13:53:48 +01:00
|
|
|
int strlen(const char* string);
|
|
|
|
#endif
|
2009-01-28 16:13:38 +01:00
|
|
|
|
|
|
|
void strcat(char strDest[], char strSource[]);
|
|
|
|
int strcmp(const char* string1, const char* string2);
|
|
|
|
//void strcpy(char strDest[], const char strSource[]);
|
|
|
|
char* strncpy(char *strDest, const char *strSource, unsigned n);
|
|
|
|
char *strchr(const char* string, int c);
|