esp-open-rtos/extras/httpd/strcasestr.h

10 lines
211 B
C
Raw Normal View History

2017-02-02 06:17:53 +00:00
#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 */