mirror of
https://github.com/zeldaret/mm.git
synced 2025-02-16 11:39:43 +00:00
18 lines
419 B
C
18 lines
419 B
C
![]() |
#ifndef _UTIL_H_
|
||
|
#define _UTIL_H_
|
||
|
|
||
|
#ifdef __GNUC__
|
||
|
__attribute__((format(printf, 1, 2), noreturn))
|
||
|
#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
|