1/*
2 * Copyright 2018 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _GNU_STRING_H_
6#define _GNU_STRING_H_
7
8
9#include_next <string.h>
10
11
12#ifdef _GNU_SOURCE
13
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19extern void *memmem(const void *source, size_t sourceLength,
20	const void *search, size_t searchLength);
21
22#ifdef __cplusplus
23}
24#endif
25
26
27#endif
28
29
30#endif	/* _GNU_STRING_H_ */
31