Kinl/sys/string/string.h

9 lines
141 B
C

#ifndef __STRING_H
#define __STRING_H
char tolower (char s1);
int strlen (const char *str);
int strnlen (const char *str, int max);
#endif