#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