Subversion Repositories Kolibri OS

Rev

Rev 1665 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1665 Nasarus 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
void _itoa(int i, char *s);
2502 Albom 16