Also added a pretty much untested and totally incomplete STL string type.

This commit is contained in:
2024-01-12 01:31:43 +01:00
parent ff3214fa5a
commit 219a48c616
21 changed files with 138 additions and 12 deletions

17
bastl/include/cstdio Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#if !defined(BAD_APPLE_OS_CSTDIO_INCLUDED)
#define BAD_APPLE_OS_CSTDIO_INCLUDED
#include <stdio.h>
namespace std
{
using ::putchar;
using ::puts;
using ::printf;
using ::vprintf;
}
#endif // !defined(BAD_APPLE_OS_CSTDIO_INCLUDED)