aboutsummaryrefslogtreecommitdiffstats
path: root/src/add.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/add.c')
-rw-r--r--src/add.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/add.c b/src/add.c
new file mode 100644
index 0000000..fb6bf25
--- /dev/null
+++ b/src/add.c
@@ -0,0 +1,21 @@
+#include "project.h"
+
+
+
+void add(DISK *d,int n,char *guid,int start,int end)
+{
+GPT_header *h;
+GPT_entry *e;
+
+uint8_t buf[512];
+
+disk_read(d,buf,1,1);
+h=(GPT_header *)buf;
+
+}
+
+
+
+
+
+