12 lines
245 B
C
12 lines
245 B
C
|
|
||
|
#ifndef NOXOS_FILE_UTILS_H
|
||
|
#define NOXOS_FILE_UTILS_H
|
||
|
|
||
|
#include <utils/stdtypes.h>
|
||
|
|
||
|
uint64_t file_get_length (char *path);
|
||
|
uint64_t file_read_into_buffer (char *path, void *buffer, uint64_t offset, uint64_t num_bytes);
|
||
|
|
||
|
#endif
|
||
|
|