Subversion Repositories Kolibri OS

Rev

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

Rev 2502 Rev 2735
Line 12... Line 12...
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);
15
void    _itoa(int i, char *s);
16
16
void  reverse(char *s);
-
 
17
void     itoa(int i, char *s);
-
 
18