blob: 1fdfa1ea93a880efc3428287925738b33b664196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file
* @author Matt "MateoConLechuga" Waltz
* @brief Optimized decompression routines
*/
#ifndef DECOMPRESS_H
#define DECOMPRESS_H
#ifdef __cplusplus
extern "C" {
#endif
#warning compatibility defines (do not use)
void dzx7_Turbo(void *src, void *dst);
void dzx7_Standard(void *src, void *dst);
#ifdef __cplusplus
}
#endif
#endif
|