implemented file read/write functions

This commit is contained in:
2025-08-04 18:23:46 +03:00
parent ab55f85160
commit e1dc972b24
5 changed files with 129 additions and 14 deletions

10
src/filesystem/internal.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "tlibc/filesystem.h"
#if TLIBC_FS_USE_WINDOWS_H
#include <windows.h>
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#endif