blob: 02ad8d6d3be656610a356310ac0b041b4fcce31e (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright (c) 2016 YamaArashi
#ifndef RL_H
#define RL_H
unsigned char *RLDecompress(unsigned char *src, int srcSize, int *uncompressedSize);
unsigned char *RLCompress(unsigned char *src, int srcSize, int *compressedSize);
#endif // RL_H
|