mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
10 lines
243 B
C
10 lines
243 B
C
// 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
|