2009-04-08 14:57:46 +04:00
|
|
|
/*
|
2010-11-04 01:04:50 +03:00
|
|
|
* Copyright 2009-2010 Haiku Inc. All Rights Reserved.
|
2009-04-08 14:57:46 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BSD_STRING_H_
|
|
|
|
#define _BSD_STRING_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include_next <string.h>
|
|
|
|
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
#ifdef _BSD_SOURCE
|
|
|
|
|
|
|
|
|
2009-04-08 14:57:46 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char* strsep(char** string, const char* delimiters);
|
2017-12-14 03:25:45 +03:00
|
|
|
void explicit_bzero(void *buf, size_t len);
|
2009-04-08 14:57:46 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-04-08 14:57:46 +04:00
|
|
|
#endif /* _BSD_STRING_H_ */
|