/* Sarien - A Sierra AGI resource interpreter engine * Copyright (C) 1999-2001 Stuart George and Claudio Matsuoka * * $Id: lzw.h,v 1.2 2001/04/14 01:00:10 cmatsuoka Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; see docs/COPYING for further details. */ #ifndef __AGI_LZW_H #define __AGI_LZW_H #ifdef __cplusplus extern "C"{ #endif void LZW_expand (UINT8 *, UINT8 *, SINT32); #ifdef __cplusplus }; #endif #endif