diff options
author | Marvin Borner | 2020-04-15 16:35:29 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-15 16:35:29 +0200 |
commit | aa3d1b4689e6dadd982fe1e5ca8af69ca39c617d (patch) | |
tree | 8d4eff1df3031e601cb50cf005130a591fce35a1 /src/kernel/fs/iso9660/iso9660.h | |
parent | 10cd931d75a02942c5ad254cef2e56b515122fa3 (diff) |
Added ext2 filesystem
Diffstat (limited to 'src/kernel/fs/iso9660/iso9660.h')
-rw-r--r-- | src/kernel/fs/iso9660/iso9660.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/kernel/fs/iso9660/iso9660.h b/src/kernel/fs/iso9660/iso9660.h deleted file mode 100644 index 6b2e0b0..0000000 --- a/src/kernel/fs/iso9660/iso9660.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef MELVIX_ISO9660_H -#define MELVIX_ISO9660_H - -#define ISO9660_ROOT_RECORD_OFFSET 156 -#define ISO9660_DIR_RECORD_LENGTH 0 -#define ISO9660_DIR_EAR_LBA 2 -#define ISO9660_DIR_EAR_LENGTH 10 -#define ISO9660_DIR_FILENAME_LENGTH 32 -#define ISO9660_DIR_FILENAME 33 - -#include <stdint.h> - -struct iso9660_entity { - uint32_t lba; - uint32_t length; -}; - -struct iso9660_entity *ISO9660_get(char **dirs, uint8_t dirs_sz); - -uint8_t *ISO9660_read(struct iso9660_entity *entity); - -#endif
\ No newline at end of file |