16 lines
255 B
C
16 lines
255 B
C
#include "types.h"
|
|
|
|
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
File file_read(char *path);
|
|
|
|
bool file_should_update(File file);
|
|
|
|
void file_update(File *file);
|
|
|
|
void file_prepend(File *src, File extra);
|
|
|
|
void file_free(File *file, bool free_path);
|
|
|
|
#endif /* FILE_H */ |