Squash commits for public release
This commit is contained in:
31
libs/libcxx/include/cstring
Normal file
31
libs/libcxx/include/cstring
Normal file
@@ -0,0 +1,31 @@
|
||||
#pragma GCC system_header
|
||||
|
||||
#ifndef _LIBCXX_CSTRING
|
||||
#define _LIBCXX_CSTRING
|
||||
|
||||
#include <__config>
|
||||
#include <string.h>
|
||||
|
||||
_LIBCXX_BEGIN_NAMESPACE_STD
|
||||
|
||||
using ::memccpy;
|
||||
using ::memchr;
|
||||
using ::memcmp;
|
||||
using ::memcpy;
|
||||
using ::memmove;
|
||||
using ::memset;
|
||||
using ::strcat;
|
||||
using ::strchr;
|
||||
using ::strcmp;
|
||||
using ::strcpy;
|
||||
using ::strlen;
|
||||
using ::strncmp;
|
||||
using ::strncpy;
|
||||
using ::strrchr;
|
||||
using ::strstr;
|
||||
using ::strtok;
|
||||
using ::strtok_r;
|
||||
|
||||
_LIBCXX_END_NAMESPACE_STD
|
||||
|
||||
#endif // _LIBCXX_CSTRING
|
||||
Reference in New Issue
Block a user