annotate src/lzfu.h @ 73:3cb02cb1e6cd stable-0-6-10

Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them). More changes for Fedora packaging (#434727) Fixes for const correctness.
author Carl Byington <carl@five-ten-sg.com>
date Thu, 29 May 2008 18:51:02 -0700
parents f6db1f060a95
children 987aa872294e
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
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
4 #include <stdint.h>
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
5
73
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
6 char* 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
7
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
8 #endif