owntone-server/src/strcasestr.h

9 lines
142 B
C
Raw Normal View History

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