9 lines
142 B
C
Raw Normal View History

2004-03-08 19:21:03 +00:00
#ifndef _STRCASESTR_H_
#define _STRCASESTR_H_
#ifndef HAVE_STRCASESTR
2004-03-08 19:21:03 +00:00
extern char * strcasestr(char* haystack, char* needle);
#endif
2004-03-08 19:21:03 +00:00
#endif