00001 /* 00002 * liblzr.h 00003 * LZR Decompress Library 00004 * Version 0.11 by BenHur - http://www.psp-programming.com/benhur 00005 * 00006 * This work is licensed under the Creative Commons Attribution-Share Alike 3.0 License. 00007 */ 00008 00009 #ifndef LIBLZR_H__ 00010 #define LIBLZR_H__ 00011 00012 #ifdef __cplusplus 00013 extern "C" { 00014 #endif 00015 00016 int LZRDecompress(void *out, unsigned int out_capacity, void *in, void *in_end); 00017 00018 #ifdef __cplusplus 00019 } 00020 #endif 00021 00022 #endif