feat: 9.5.9
This commit is contained in:
parent
cb1753732b
commit
35f43a7909
1084 changed files with 558985 additions and 0 deletions
13
lz4/ossfuzz/lz4_helpers.h
Normal file
13
lz4/ossfuzz/lz4_helpers.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef LZ4_HELPERS
|
||||
#define LZ4_HELPERS
|
||||
|
||||
#include "lz4frame.h"
|
||||
|
||||
LZ4F_frameInfo_t FUZZ_randomFrameInfo(uint32_t* seed);
|
||||
|
||||
LZ4F_preferences_t FUZZ_randomPreferences(uint32_t* seed);
|
||||
|
||||
size_t FUZZ_decompressFrame(void* dst, const size_t dstCapacity,
|
||||
const void* src, const size_t srcSize);
|
||||
|
||||
#endif /* LZ4_HELPERS */
|
||||
Reference in a new issue