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 11 12 #ifdef _BSD_SOURCE 13 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 char* strsep(char** string, const char* delimiters); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 26 #endif 27 28 29 #endif /* _BSD_STRING_H_ */ 30