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.
 
 

16 lines
237 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;
void fatal(const char *fmt, ...);
byte_arr_t *read_file(const char *filepath);
#endif