12 lines
255 B
C
12 lines
255 B
C
#ifndef COMMAND_FILE_H
|
|
#define COMMAND_FILE_H
|
|
|
|
#include <stdio.h>
|
|
|
|
extern int init_directive_c(const char * const folder);
|
|
extern int deinit_directive_c(void);
|
|
extern int make_directive_file(FILE * f);
|
|
extern int execute_directive_file(FILE * f);
|
|
|
|
#endif
|