Started implementing a C++ stdlib. And improved the print function by adding newline support and scrolling.

This commit is contained in:
2024-01-10 22:46:44 +01:00
parent 0b05970c71
commit 1756b6a1a9
8 changed files with 116 additions and 27 deletions

14
include/cstring Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#if !defined(BAD_APPLE_OS_CSTRING_HPP_INCLUDED)
#define BAD_APPLE_OS_CSTRING_HPP_INCLUDED
#include <string.h>
namespace std
{
using ::strlen;
}
#endif // !defined(BAD_APPLE_OS_CSTRING_HPP_INCLUDED)