view src/lzfu.h @ 42:7a97f50c39c5 stable-0-5-12 **FUNKY**

security fix for potential buffer overrun in lz decompress
author carl
date Tue, 02 Oct 2007 16:10:36 -0700
parents 183ae993b9ad
children f6db1f060a95
line wrap: on
line source

#ifndef LZFU_H
#define LZFU_H

#ifdef _MSC_VER
#define u_int32_t unsigned int
#else
#include <stdint.h>
#endif

unsigned char* lzfu_decompress (unsigned char* rtfcomp, u_int32_t compsize, size_t *size);

#endif