treeScannerC/include/scanner_config.h

12 lines
190 B
C
Raw Permalink Normal View History

#ifndef SCANNER_CONFIG_H
#define SCANNER_CONFIG_H
typedef struct {
int max_depth;
int max_files_per_dir;
} ScannerConfig;
void init_config_defaults(ScannerConfig *config);
#endif