refactor: extract project related functions to project.c

This commit is contained in:
2025-11-08 14:58:34 +01:00
parent 197c0c70da
commit de5fc8c641
7 changed files with 181 additions and 119 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "types.h"
#ifndef PROJECT_H
#define PROJECT_H
Project project_init(char *project_path, char *config_file);
void project_reload(Project *project, void (*reload_callback)(unsigned int));
void project_free(Project project);
#endif /* PROJECT_H */