lz4.h (e499793e7625e9f272c04b4b705cb6af013a9231) | lz4.h (975e1c1ce64afd5a2ed1647c80888b0fb6c132ae) |
---|---|
1/* 2 * LZ4 - Fast LZ compression algorithm 3 * Header File 4 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: --- 29 unchanged lines hidden (view full) --- 38 39#ifdef __cplusplus 40extern "C" { 41#endif 42 43extern size_t lz4_compress(void *, void *, size_t, size_t, int); 44extern int lz4_decompress(void *, void *, size_t, size_t, int); 45 | 1/* 2 * LZ4 - Fast LZ compression algorithm 3 * Header File 4 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: --- 29 unchanged lines hidden (view full) --- 38 39#ifdef __cplusplus 40extern "C" { 41#endif 42 43extern size_t lz4_compress(void *, void *, size_t, size_t, int); 44extern int lz4_decompress(void *, void *, size_t, size_t, int); 45 |
46#if defined(_KERNEL) || defined(_FAKE_KERNEL) 47extern void lz4_init(void); 48extern void lz4_fini(void); 49#endif 50 |
|
46#ifdef __cplusplus 47} 48#endif 49 50#endif /* _LZ4_H */ | 51#ifdef __cplusplus 52} 53#endif 54 55#endif /* _LZ4_H */ |