Add benchmark framework for testing compression algos
[platform/core/system/dlog.git] / src / tests / fastlz_test.h
1 #ifndef FASTLZ_TEST_H
2 #define FASTLZ_TEST_H
3
4 #include "test_compression_common.h"
5
6 extern struct test_algo fastlz;
7
8 struct fastlz_compressed {
9         struct common_compressed common;
10         char *data;
11         size_t size_original;
12 };
13
14 #endif