xref: /haiku/headers/compatibility/bsd/string.h (revision 1f52c921e27aa442370e1bd4adc021acf2b78b64)
1 /*
2  * Copyright 2009-2010 Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BSD_STRING_H_
6 #define _BSD_STRING_H_
7 
8 
9 #include_next <string.h>
10 #include <features.h>
11 
12 
13 #ifdef _DEFAULT_SOURCE
14 
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 char* strsep(char** string, const char* delimiters);
21 void explicit_bzero(void *buf, size_t len);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 
28 #endif
29 
30 
31 #endif	/* _BSD_STRING_H_ */
32