mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 07:35:57 -05:00
7 lines
111 B
C
7 lines
111 B
C
|
#ifndef _STRCASESTR_H_
|
||
|
#define _STRCASESTR_H_
|
||
|
|
||
|
extern char * strcasestr(char* haystack, char* needle);
|
||
|
|
||
|
#endif
|