1 #ifndef RECURSE_H
2 #define RECURSE_H
3 
4 #ifdef ENABLE_RECURSIVE
5 
6 #include "main.h"
7 
8 extern int process_argument(const char* path, SETTINGS* settings);
9 
10 #endif /* ENABLE_RECURSIVE */
11 
12 #endif /* RECURSE_H */
13