diff options
author | Artyom Bologov | 2024-08-17 02:43:47 +0400 |
---|---|---|
committer | Artyom Bologov | 2024-08-17 02:43:47 +0400 |
commit | da3c5ad5c6db46fb2198a5bf75648e71e2a17996 (patch) | |
tree | e6f0d97327b5c2f2c60402d4cfb9b92e40609155 /src/debug.h | |
parent | 3f9296136abb54717c2ebd94252aafbf9ed09e33 (diff) | |
download | pangemma-da3c5ad5c6db46fb2198a5bf75648e71e2a17996.tar.gz |
Add -debug-dump CLI flag for dumping data to files.
Diffstat (limited to 'src/debug.h')
-rw-r--r-- | src/debug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/debug.h b/src/debug.h index ff22756..0489a81 100644 --- a/src/debug.h +++ b/src/debug.h @@ -33,6 +33,7 @@ void gemma_gsl_error_handler (const char * reason, void debug_set_debug_mode(bool setting); void debug_set_debug_data_mode(bool setting); +void debug_set_debug_dump_mode(bool setting, char *path); void debug_set_check_mode(bool setting); void debug_set_no_check_mode(bool setting); void debug_set_no_fpe_check_mode(bool setting); @@ -43,6 +44,7 @@ void debug_set_legacy_mode(bool setting); bool is_debug_mode(); bool is_debug_data_mode(); +bool is_debug_dump_mode(); bool is_no_check_mode(); bool is_check_mode(); bool is_fpe_check_mode(); |