Skip to content
Snippets Groups Projects
Commit 8e14b84e authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

What kind of monster puts a size_t after a uint8_t in a struct?

parent 89d74a14
Branches
Tags
No related merge requests found
Pipeline #7618 passed
...@@ -52,16 +52,17 @@ typedef struct { ...@@ -52,16 +52,17 @@ typedef struct {
/* Converted from global variables to struct Apr-21-2003 */ /* Converted from global variables to struct Apr-21-2003 */
typedef struct { typedef struct {
   
size_t outsz;
huffman_t huff; huffman_t huff;
uint16_t getbuf; /* Was just "unsigned" fixed 04/12/95 */ uint16_t getbuf; /* Was just "unsigned" fixed 04/12/95 */
uint8_t text_buf[LZH_STRBUF_SZ]; uint8_t text_buf[LZH_STRBUF_SZ];
uint8_t getlen; uint8_t getlen;
size_t outsz;
   
} lzh_decode_t; } lzh_decode_t;
   
typedef struct { typedef struct {
   
size_t outsz;
uint32_t putbuf; uint32_t putbuf;
huffman_t huff; huffman_t huff;
uint16_t lchild[LZH_STRBUF_SZ + 1]; uint16_t lchild[LZH_STRBUF_SZ + 1];
...@@ -71,7 +72,6 @@ typedef struct { ...@@ -71,7 +72,6 @@ typedef struct {
uint16_t match_length; uint16_t match_length;
uint8_t text_buf[LZH_STRBUF_SZ + LZH_LOOKAHD_SZ - 1]; uint8_t text_buf[LZH_STRBUF_SZ + LZH_LOOKAHD_SZ - 1];
uint8_t putlen; uint8_t putlen;
size_t outsz;
   
} lzh_encode_t; } lzh_encode_t;
   
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment