mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
4 lines
135 B
C
4 lines
135 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
void *map_file_to_memory(const char *name, size_t *sz);
|
|
void unmap_file(void *ptr, size_t sz);
|