p2lzw / lzw.h
lzw.h
Raw
#ifndef A6F618D1_353E_46B7_B545_51992852BBDA
#define A6F618D1_353E_46B7_B545_51992852BBDA

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <limits.h>
#include <libgen.h>
#include <errno.h>
#include <sys/stat.h>

#define MIN_BITS 9
#define MAX_BITS 20
#define DEFAULT_BITS 12
#define EMPTY -1
#define BYTE_SIZE 8

#endif /* A6F618D1_353E_46B7_B545_51992852BBDA */