From ace65b453151845bc361f21f3e5b651c35f9f126 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 22 May 2024 13:00:41 -0400 Subject: massive refactor for mp and organization --- ird/initrd.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 ird/initrd.h (limited to 'ird/initrd.h') diff --git a/ird/initrd.h b/ird/initrd.h deleted file mode 100644 index f236fa1..0000000 --- a/ird/initrd.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef JOVE_INITRD_H -#define JOVE_INITRD_H 1 - -#include -#include "tar.h" -#include "lib/linkedlist.h" - -struct InitrdFile { - struct InitrdFile *next; - struct TARHeader *header; - const char *name; - size_t size; - const void *data; -}; - -void initrd_setup(void); - -struct InitrdFile *ird_getfile(const char *path); -struct SLinkedList *ird_getfiles(void); - -#endif -- cgit v1.2.1