refactor: extract project related functions to project.c
This commit is contained in:
@@ -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 */
|
||||
Reference in New Issue
Block a user