mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 03:47:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
17 lines
243 B
C
17 lines
243 B
C
#ifndef __STRING_PATCH_INCLUDE_H__
|
|
#define __STRING_PATCH_INCLUDE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
|
|
#ifdef HAVE_NO_STRCASESTR
|
|
char *strcasestr(char *haystack, char *needle);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|