Initial release commit

This commit is contained in:
Riley-King
2025-02-27 00:01:01 +11:00
parent 2522eacb86
commit a610e67325
20 changed files with 2322 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
#include <stdio.h>
#if defined (WIN32) || defined (_WIN32)
FILE* popen(const char* cmd, const char* mode) { return _popen(cmd, mode); }
int pclose(FILE* stream) { return _pclose(stream); };
#else
#endif