11 lines
186 B
C
11 lines
186 B
C
|
|
||
|
#ifndef RR_FS_QUICK_H
|
||
|
#define RR_FS_QUICK_H
|
||
|
|
||
|
#include <librr/types.h>
|
||
|
|
||
|
usz_t rr_get_file_length(const char *path);
|
||
|
void * rr_load_whole_file(const char *path);
|
||
|
|
||
|
#endif // RR_FS_QUICK_H
|