Subversion Repositories Kolibri OS

Rev

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

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