Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4556 Albom 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
char* strrchr(const char* string, int c);
16
void    _itoa(int i, char *s);
17
void  reverse(char *s);
18
void     itoa(int i, char *s);
19
int     _atoi( char *s );
20