12 lines
190 B
C
12 lines
190 B
C
|
#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
|