mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-10 22:18:41 -05:00
9 lines
143 B
C
9 lines
143 B
C
#ifndef IO_H_
|
|
#define IO_H_
|
|
|
|
#define CHUNK_SIZE 4096
|
|
|
|
char *ReadFileToBuffer(const char *filename, bool isStdin, long *size);
|
|
|
|
#endif // IO_H_
|