16 lines
362 B
C
16 lines
362 B
C
// 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
|