#ifndef PSXC_UTIL_H_ #define PSXC_UTIL_H_ #include #include 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