mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
18 lines
409 B
C
18 lines
409 B
C
|
#ifndef _UTIL_H_
|
||
|
#define _UTIL_H_
|
||
|
|
||
|
#ifdef __GNUC__
|
||
|
__attribute__((format(printf, 1, 2)))
|
||
|
#endif
|
||
|
void util_fatal_error(const char *msgfmt, ...);
|
||
|
|
||
|
void *util_read_whole_file(const char *filename, size_t *pSize);
|
||
|
|
||
|
void util_write_whole_file(const char *filename, const void *data, size_t size);
|
||
|
|
||
|
uint32_t util_read_uint32_be(const uint8_t *data);
|
||
|
|
||
|
void util_write_uint32_be(uint8_t *data, uint32_t val);
|
||
|
|
||
|
#endif
|