diff options
Diffstat (limited to 'src/header.h')
| -rw-r--r-- | src/header.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/header.h b/src/header.h index d45d4b0..19f7fcd 100644 --- a/src/header.h +++ b/src/header.h @@ -27,11 +27,11 @@ /* Structure representing the header section of an XP3 archive. */ struct header { - char magic[11]; /* Identifier for the archive. */ - uint64_t info_offset; /* Offset to `table_size`. */ - uint32_t version; /* Raw value containing the archive version. */ - uint64_t table_size; /* The size of the table section. (?) */ - uint8_t flags; /* A flags variable for the archive. (?) */ + char magic[11]; /* Identifier for the archive. */ + uint64_t info_offset; /* Offset to `table_size`. */ + uint32_t version; /* Raw value containing the archive version. */ + uint64_t table_size; /* The size of the table section. (?) */ + uint8_t flags; /* A flags variable for the archive. (?) */ uint64_t table_offset; /* Offset to the archive table. */ }; |