mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 06:39:36 +02:00
10 lines
208 B
C
10 lines
208 B
C
#ifndef COMPFILE_H_
|
|
#define COMPFILE_H_
|
|
|
|
#include <stdio.h> /* FILE */
|
|
|
|
int CompFile_ExtractGZ(const char *infilename, FILE *outfp);
|
|
int CompFile_DCMtoATR(FILE *infp, FILE *outfp);
|
|
|
|
#endif /* COMPFILE_H_ */
|