Files
forge-steel/src/file.h
T
2025-09-12 19:19:45 +02:00

14 lines
184 B
C

#include "types.h"
#ifndef FILE_H
#define FILE_H
File read_file(char *path);
bool should_update_file(File *file);
void update_file(File *file);
void free_file(File *file);
#endif