Decompile huft_build

This commit is contained in:
Ryan Dwyer
2020-04-26 10:49:18 +10:00
parent a6282d1682
commit 0ba7d1fb76
2 changed files with 263 additions and 422 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef _IN_INFLATE_H
#define _IN_INFLATE_H
#include <ultra64.h>
struct huft {
u8 e; /* number of extra bits or operation */
u8 b; /* number of bits in this code or subcode */
union {
u16 n; /* literal, length base, or distance base */
struct huft *t; /* pointer to next level of table */
} v;
};
u32 inflate1173(void *src, void *dst, struct huft *hlist);
#endif