Subversion Repositories Kolibri OS

Rev

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

Rev 1665 Rev 2502
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
15
void _itoa(int i, char *s);
-
 
16