Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1814 yogev_ezra 1
 
2
#define NULL ((void*)0)
3
#endif
4
5
 
6
void* memcpy(void *dst, const void *src, unsigned size);
7
int memcmp(const void* buf1, const void* buf2, int count);
8
9
 
10
int strcmp(const char* string1, const char* string2);
11
void strcpy(char strDest[], const char strSource[]);
12
char* strncpy(char *strDest, const char *strSource, unsigned n);
13
int strlen(const char* string);
14
char *strchr(const char* string, int c);
15