16 lines
290 B
C
Raw Normal View History

2019-11-11 23:01:05 +01:00
#include <assert.h>
#include <lzma.h>
#include <string.h>
static const uint8_t test_string[9] = "123456789";
2024-04-14 22:45:38 +02:00
int main(void)
2019-11-11 23:01:05 +01:00
{
static const uint32_t test_vector = 0xCBF43926;
uint32_t crc = lzma_crc32(test_string, sizeof(test_string), 0);
assert(crc == test_vector);
return 0;
}