]> git.ozlabs.org Git - ccan/blob - ccan/memmem/memmem.h
Syntax highlighting for module example code using prettify. Note: prettify is introdu...
[ccan] / ccan / memmem / memmem.h
1 /* CC0 (Public domain) - see LICENSE file for details */
2 #ifndef CCAN_MEMMEM_H
3 #define CCAN_MEMMEM_H
4
5 #include "config.h"
6
7 #include <string.h>
8
9 #if !HAVE_MEMMEM
10 void *memmem(const void *haystack, size_t haystacklen,
11              const void *needle, size_t needlelen);
12 #endif
13
14 #endif /* CCAN_MEMMEM_H */