This commit is contained in:
anon
2025-01-23 09:41:36 +01:00
commit b3437f8f62
14 changed files with 1107 additions and 0 deletions

11
source/directive.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef COMMAND_FILE_H
#define COMMAND_FILE_H
#include <stdio.h>
extern int init_directive_c(const char * folder_);
extern int deinit_directive_c(void);
extern int make_directive_file(FILE * f);
extern int execute_directive_file(FILE * f);
#endif