annotate src/lzfu.h @ 172:6954d315aaa8

move version-info into main configure.in, and set it properly. prefix all external symbols in the shared library with pst_ to avoid symbol clashes with other shared libraries.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 16:00:48 -0700
parents 987aa872294e
children cf3df962f1e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1 #ifndef LZFU_H
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 #define LZFU_H
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
3
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
4 char* pst_lzfu_decompress (char* rtfcomp, uint32_t compsize, size_t *size);
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
5
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
6 #endif