Also added a pretty much untested and totally incomplete STL string type.
This commit is contained in:
19
bastl/include/cstring
Normal file
19
bastl/include/cstring
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#if !defined(BAD_APPLE_OS_CSTRING_INCLUDED)
|
||||
#define BAD_APPLE_OS_CSTRING_INCLUDED
|
||||
|
||||
#include <string.h>
|
||||
|
||||
namespace std
|
||||
{
|
||||
using ::strlen;
|
||||
|
||||
using ::memcmp;
|
||||
using ::memcpy;
|
||||
using ::memmove;
|
||||
using ::memset;
|
||||
}
|
||||
|
||||
#endif // !defined(BAD_APPLE_OS_CSTRING_INCLUDED)
|
||||
Reference in New Issue
Block a user