Files
forge-steel/src/file.h
T
2026-08-29 12:00:50 +02:00

19 lines
356 B
C

#include "types.h"
#ifndef FILE_H
#define FILE_H
void file_read(File *file, const char *path);
bool file_should_update(const File *file);
bool file_update(File *file);
void file_write(const char *path, const StringArray *lines, const bool log);
void file_dump(const char *path, const char *content);
void file_free(File *file);
#endif /* FILE_H */