psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
213 B

#ifndef PSXC_UTIL_H_
#define PSXC_UTIL_H_
#include <stddef.h>
#include <stdint.h>
typedef struct {
size_t size;
uint8_t data[];
} byte_arr_t;
extern byte_arr_t *read_file(const char *filepath);
#endif