mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-02-06 16:14:42 +00:00
7 lines
207 B
C
7 lines
207 B
C
int strcmp(char const * a, char const * b);
|
|
int stricmp(char const * a, char const * b);
|
|
void strcpy(char * dest, char const * src);
|
|
void stricpy(char * dest, char const * src);
|
|
int strlen(char const * a);
|
|
|