file utility

This commit is contained in:
2025-09-12 18:41:18 +02:00
parent 45ea7731f0
commit fda0de78c7
6 changed files with 90 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
#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);
#endif