Added some more stdlib.

This commit is contained in:
2024-01-11 00:28:38 +01:00
parent 1756b6a1a9
commit 0348b24f05
17 changed files with 354 additions and 47 deletions

View File

@@ -1,14 +1,19 @@
#pragma once
#if !defined(BAD_APPLE_OS_CSTRING_HPP_INCLUDED)
#define BAD_APPLE_OS_CSTRING_HPP_INCLUDED
#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_HPP_INCLUDED)
#endif // !defined(BAD_APPLE_OS_CSTRING_INCLUDED)