jes-ruby/src/FileReader.h

14 lines
203 B
C++

#ifndef JES_FILEREADER_H
#define JES_FILEREADER_H
#include <stdint.h>
#include <stdlib.h>
class FileReader
{
public:
static bool load(const char * fname, uint8_t ** buf, size_t * size);
};
#endif