10 lines
180 B
C
10 lines
180 B
C
#ifndef __FILEIO__
|
|
#define __FILEIO__
|
|
#include <stdlib.h>
|
|
#include "global.h"
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
extern word *fileio_loadBin(const char *filePath, size_t memorySize);
|
|
#endif
|