summaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
authorGalen Sagarin <gps5307@rit.edu>2025-05-06 19:23:26 -0400
committerGalen Sagarin <gps5307@rit.edu>2025-05-06 19:43:55 -0400
commitc1fa3f27ea5f3698ae692534b3d658e4f11bede1 (patch)
tree86f83af449f93ad14cb27a9c25dd0880564755ca /kernel/include
parentedited a bit of documentation for tar.c (diff)
downloadcomus-c1fa3f27ea5f3698ae692534b3d658e4f11bede1.tar.gz
comus-c1fa3f27ea5f3698ae692534b3d658e4f11bede1.tar.bz2
comus-c1fa3f27ea5f3698ae692534b3d658e4f11bede1.zip
finished documentation, and deleted ramfs.c and ramfs.h, as both were nowhere near implemented.
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/comus/ramfs.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/kernel/include/comus/ramfs.h b/kernel/include/comus/ramfs.h
deleted file mode 100644
index d3cd703..0000000
--- a/kernel/include/comus/ramfs.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*#include <comus/fs.h>
-#ifndef RAMFS_H_
-#define RAMFS_H_
-#define MAX_FILES 32
-#define MAX_FILE_SIZE 4096
-
-struct file {
- char name[32];
- size_t size;
- char *data;
-} file;
-
-struct file allTheFiles[MAX_FILES];
-int numberOfFiles = 0;
-
-#endif
-/*
-typedef struct ramfs_file {
- char name[32];
- int size;
- char *data;
-} file;
-
-typedef struct ramfs_directory {
- char name[32];
- file *files[MAX_FILES];
- directory *directories[MAX_FILES];
- int file_count;
- int directory_count;
-} directory;
-
-typedef struct ramfs_root {
- directory *root;
-} root;
-
-//struct file allTheFiles[MAX_FILES];
-int numberOfFiles = 0;
-
-
-#endif*/ \ No newline at end of file