mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-25 22:55:56 -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
|