Implemented simple IO for getting keyboard input.

This commit is contained in:
2024-01-20 01:13:29 +01:00
parent d711938821
commit f4bad14fcd
9 changed files with 584 additions and 306 deletions

View File

@@ -8,10 +8,19 @@
namespace std
{
using ::EOF;
using ::putchar;
using ::puts;
using ::printf;
using ::vprintf;
using ::snprintf;
using ::vsnprintf;
using ::fgets;
using ::fgetc;
using ::getc;
using ::getchar;
}
#endif // !defined(BAD_APPLE_OS_CSTDIO_INCLUDED)