mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-23 13:17:45 +00:00
17 lines
337 B
C++
17 lines
337 B
C++
#ifndef XIV_UTILS_ZLIB_H
|
|
#define XIV_UTILS_ZLIB_H
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace xiv::utils::zlib
|
|
{
|
|
|
|
void compress( const std::vector< char >& in, std::vector< char >& out );
|
|
|
|
void no_header_decompress( uint8_t* in, size_t in_size, uint8_t* out, size_t out_size );
|
|
|
|
}
|
|
|
|
#endif // XIV_UTILS_ZLIB_H
|