1// 2// lzssdec.h 3// img4tool 4// 5// Code borrowed from: http://newosxbook.com/src.jl?tree=listings&file=joker.c 6// Coded by Jonathan Levin (a.k.a @Morpheus______), http://newosxbook.com 7 8#ifndef lzssdec_h 9#define lzssdec_h 10 11#include <stdint.h> 12#include <stdlib.h> 13 14char *tryLZSS(char *compressed, size_t *filesize); 15 16#endif /* lzssdec_h */ 17 18