9 lines
184 B
C
9 lines
184 B
C
#ifndef INCLUDE_STRING_H
|
|
#define INCLUDE_STRING_H
|
|
|
|
int strlen(const char* str);
|
|
int strcmp(const char* str1, const char* str2);
|
|
char* strtok(char* str, const char* delimiter);
|
|
|
|
#endif
|