comparison src/lzfu.h @ 193:cf3df962f1e5 stable-0-6-37

prep for fedora build
author Carl Byington <carl@five-ten-sg.com>
date Fri, 17 Apr 2009 12:51:59 -0700
parents 6954d315aaa8
children
comparison
equal deleted inserted replaced
192:774b2e77eb50 193:cf3df962f1e5
1 #ifndef LZFU_H 1 #ifndef LZFU_H
2 #define LZFU_H 2 #define LZFU_H
3 3
4 /** decompress lz compressed rtf data. The initial lz dictionary is preloaded
5 with rtf specific data.
6 * @param rtfcomp pointer to the rtf compressed data
7 * @param compsize size of the compressed data buffer
8 * @param size pointer to location to return size of the output buffer
9 * @return pointer to the output buffer containing the decompressed data.
10 * The caller must free this buffer.
11 */
4 char* pst_lzfu_decompress (char* rtfcomp, uint32_t compsize, size_t *size); 12 char* pst_lzfu_decompress (char* rtfcomp, uint32_t compsize, size_t *size);
5 13
6 #endif 14 #endif