Upload files to "include"

This commit is contained in:
2026-03-27 00:56:20 +00:00
parent 15e1252dbe
commit 8a83fc270c
4 changed files with 68 additions and 38 deletions

15
include/files.h Normal file
View File

@@ -0,0 +1,15 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#ifndef FILES_h
#define FILES_h
// file handling
long Wopen(const char *pathname, int flags, int mode);
long closeFile(long fd);
long reader(long fd, char *string);
long mkdir(const char *filePath, int mode);
#endif