os/string.h

8 lines
172 B
C
Raw Normal View History

2024-05-21 18:41:16 +03:00
#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