Poke_Transporter_GB/tools/data-generator/include/common.h
Philippe Symons 532a095d77 Implement zx0 compression
Compress data tables with the ZX0 compression algorithm
2025-04-24 21:14:48 +02:00

9 lines
165 B
C++

#ifndef _COMMON_H
#define _COMMON_H
#include <cstdint>
#include <cstddef>
void writeTable(const char* filename, const uint8_t *buffer, size_t buffer_size);
#endif