9 lines
141 B
C
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
|