23b1d6660c
CI / lint (push) Failing after 16s
CI / build-and-test (push) Has been skipped
CI / sanitizers (address) (push) Has been skipped
CI / sanitizers (thread) (push) Has been skipped
CI / lint (pull_request) Failing after 44s
CI / build-and-test (pull_request) Has been skipped
CI / sanitizers (address) (pull_request) Has been skipped
CI / sanitizers (thread) (pull_request) Has been skipped
- Reformat all C/H files to match .clang-format (LLVM style) - Fix 26 cppcheck const-correctness warnings (constParameterPointer, constVariablePointer, constVariable) - Update function declarations in headers to match const parameters
10 lines
186 B
C
10 lines
186 B
C
#ifndef COMPRESSION_H
|
|
#define COMPRESSION_H
|
|
|
|
#include "data.h"
|
|
|
|
Data* data_compress(Data* data_to_compress, int compression_level);
|
|
Data* data_decompress(Data* compressed_data);
|
|
|
|
#endif
|