mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-09 12:35:46 -04:00
Decompile huft_build
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user