/* Copyright (C) 2014 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #pragma once /* Structs */ typedef struct { char* name; char* data; } rom_type; /* Functions */ rom_type* open_rom(char*); void close_rom(rom_type*);