diff options
| author | ame <[email protected]> | 2023-12-19 11:38:32 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2023-12-19 11:38:32 -0600 |
| commit | 697c9bdd10e845d27018d83afb7828b6c7d82605 (patch) | |
| tree | 69a999e4d39ddb4dfa3b7be37f5454f8e7d4e5a2 /src/config.h | |
| parent | 0112e2609f8aceb791656d19db568d04c586d7be (diff) | |
updated some io stuff
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 1d45cad..15a4342 100644 --- a/src/config.h +++ b/src/config.h @@ -4,6 +4,7 @@ extern int _print_type; extern int _max_depth; extern int _start_nl_at; +extern int _file_malloc_chunk; struct str_to_int { const char* key; @@ -11,6 +12,7 @@ struct str_to_int { }; static struct str_to_int config_map[] = { + {"file_chunksize", &_file_malloc_chunk}, {"print_type", &_print_type}, {"max_depth", &_max_depth}, {"start_nl_at", &_start_nl_at}, |
