9 lines
211 B
C
9 lines
211 B
C
#ifndef STRCASESTR_H
|
|
#define STRCASESTR_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
char *strcasestr(const char *s, const char *find);
|
|
char *strncasestr(const char *s, const char * find, size_t slen);
|
|
|
|
#endif /* STRCASESTR_H */
|