blob: 4a366c39cee4044066dfe1104edf2d957dc3ab8c (
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
|