Subversion Repositories Kolibri OS

Rev

Rev 2502 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2502 Rev 2735
Line 2... Line 2...
2
#define NULL ((void*)0)
2
#define NULL ((void*)0)
3
#endif
3
#endif
4
 
4
 
Line 5... Line 5...
5
void*  memset(void *mem, int c, unsigned size);
5
void*  memset(void *mem, int c, unsigned size);
6
void* memcpy(void *dst, const void *src, unsigned size);
6
void*  memcpy(void *dst, const void *src, unsigned size);
7
int memcmp(const void* buf1, const void* buf2, int count);
7
int    memcmp(const void* buf1, const void* buf2, int count);
Line 8... Line 8...
8
 
8
 
9
void strcat(char strDest[], char strSource[]);
9
void   strcat(char strDest[], char strSource[]);
10
int strcmp(const char* string1, const char* string2);
10
int    strcmp(const char* string1, const char* string2);
11
void strcpy(char strDest[], const char strSource[]);
11
void   strcpy(char strDest[], const char strSource[]);
12
char* strncpy(char *strDest, const char *strSource, unsigned n);
12
char* strncpy(char *strDest, const char *strSource, unsigned n);
13
int strlen(const char* string);
13
int    strlen(const char* string);
14
char *strchr(const char* string, int c);
14
char*  strchr(const char* string, int c);
-
 
15
void    _itoa(int i, char *s);
-
 
16
void  reverse(char *s);