os/string.h
2024-05-21 18:41:16 +03:00

8 lines
172 B
C

#ifndef STRING_H
#define STRING_H
char *strchr(const char *str, int c);
char *strtok(char *str, const char *delim);
int strcmp(const char *str1, const char *str2);
#endif