#include "str.h" char *str_find( s1, s2 ) char *s1, *s2 ; char *str_casefind( s1, s2 ) char *s1, *s2 ; void str_fill( s, c ) char *s ; char c ; char *str_lower( s ) char *s ; char *str_upper( s ) char *s ;
str_casefind() performs the same function as str_find() except that it performs case insensitive character comparisons.
str_fill() fills the string s with the character c.
str_lower() and str_upper() convert their argument in place to a lower or upper case string respectively.
str_find() and str_casefind() return a pointer to the first occurence of s2 in s1 or NULL if s2 does not exist in s1.
str_lower() and str_upper() return s.