mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-14 16:25:03 -05:00
9 lines
142 B
C
9 lines
142 B
C
#ifndef _STRCASESTR_H_
|
|
#define _STRCASESTR_H_
|
|
|
|
#ifndef HAVE_STRCASESTR
|
|
extern char * strcasestr(char* haystack, char* needle);
|
|
#endif
|
|
|
|
#endif
|