Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/libhamcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <git@davidebeatrici.dev>2021-03-09 07:23:37 +0300
committerDavide Beatrici <git@davidebeatrici.dev>2021-03-09 07:23:37 +0300
commit95ae85a8ef45d11e222acc8021bc35c55ae39fa6 (patch)
tree3919d6e67187f14b6c1aa31f3e9ebed57b01a710 /FileSystem.h
parent2c6d6148939bc77d1a0e7d3d3fbbbc3409d05114 (diff)
Import project
Diffstat (limited to 'FileSystem.h')
-rwxr-xr-xFileSystem.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/FileSystem.h b/FileSystem.h
new file mode 100755
index 0000000..3d61408
--- /dev/null
+++ b/FileSystem.h
@@ -0,0 +1,13 @@
+#ifndef FILESYSTEM_H
+#define FILESYSTEM_H
+
+#include <stdbool.h>
+#include <stdio.h>
+
+FILE *FileOpen(const char *path);
+bool FileClose(FILE *file);
+
+bool FileRead(FILE *file, void *dst, const size_t size);
+bool FileSeek(FILE *file, const size_t offset);
+
+#endif