mirror of
https://github.com/libretro/smsplus-gx.git
synced 2025-01-06 00:48:49 +00:00
12 lines
260 B
C
12 lines
260 B
C
#ifndef FILEIO_H_
|
|
#define FILEIO_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Function prototypes */
|
|
uint8_t *loadFromZipByName(char *archive, const char *filename, uint32_t *filesize);
|
|
int32_t check_zip(const char *filename);
|
|
//int gzsize(gzFile *gd);
|
|
|
|
#endif /* FILEIO_H_ */
|