Subversion Repositories Kolibri OS

Rev

Rev 3988 | 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
char* strrchr(const char* string, int c);
3988 leency 16
void    _itoa(int i, char *s);
2735 Albom 17
void  reverse(char *s);
18
void     itoa(int i, char *s);
19
int     _atoi( char *s );
3988 leency 20
int    strnicmp(const char* string1, const char* string2, unsigned count);
6825 siemargl 21