owntone-server/src/strcasestr.h

9 lines
142 B
C

#ifndef _STRCASESTR_H_
#define _STRCASESTR_H_
#ifndef HAVE_STRCASESTR
extern char * strcasestr(char* haystack, char* needle);
#endif
#endif