- Started setting up a thread safe window manager

- Created thread & atomic structures
This commit is contained in:
2025-12-17 01:11:28 -05:00
parent 520a0e1363
commit aee4e340dd
41 changed files with 2179 additions and 428 deletions

View File

@@ -1047,6 +1047,7 @@ void file::println(const cstring& str) {
void file::println(const string& str) {
write(str.data(), str.length());
putc('\n');
}
bool file::putc(char c) {