macutils/macunpack/de_lzah.h
Arvid Norlander 926f4a694d
64-bit: Convcert all uses of long/unsigned long to int32_t/uint32_t.
Some of these may not be needed, but none of them should be incorrect.
2022-09-29 22:49:54 +02:00

11 lines
219 B
C

#ifndef DE_LZAH_H
#define DE_LZAH_H
#include <stdint.h>
extern void de_lzah(uint32_t obytes);
extern unsigned char (*lzah_getbyte)();
extern void de_lzh(int32_t ibytes, int32_t obytes, char **data, int bits);
#endif