summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-17 19:43:59 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-17 19:43:59 +0200
commitd98828d08eb1f6c1394f38a1df69c73fef0cfefa (patch)
tree31df37430733c906b235b88c2cfa14d835af4bec /fs
parent29ea3208b004f15dafa48ae29a75ba7f0c093a74 (diff)
working on vt52 and some cleanup
Diffstat (limited to 'fs')
-rw-r--r--fs/file.c2
-rw-r--r--fs/file.h14
2 files changed, 16 insertions, 0 deletions
diff --git a/fs/file.c b/fs/file.c
new file mode 100644
index 0000000..609da63
--- /dev/null
+++ b/fs/file.c
@@ -0,0 +1,2 @@
+#include "file.h"
+
diff --git a/fs/file.h b/fs/file.h
new file mode 100644
index 0000000..481a173
--- /dev/null
+++ b/fs/file.h
@@ -0,0 +1,14 @@
+#ifndef FILE_H
+#define FILE_H
+
+#include <stdint.h>
+
+typedef struct file_struct
+{
+
+ uint32_t file_id;
+
+
+}file;
+
+#endif