Subversion Repositories Kolibri OS

Rev

Rev 2502 | 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);
2735 Albom 7
int    memcmp(const void* buf1, const void* buf2, int count);
8
1665 Nasarus 9
 
2735 Albom 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);
1665 Nasarus 13
int    strlen(const char* string);
2735 Albom 14
char*  strchr(const char* string, int c);
15
void    _itoa(int i, char *s);
16
void  reverse(char *s);
17
void     itoa(int i, char *s);
18