aboutsummaryrefslogtreecommitdiff
path: root/config-parser.h
diff options
context:
space:
mode:
authorJoel Kronqvist <joelkronqvist@proton.me>2024-04-10 16:54:50 +0300
committerJoel Kronqvist <joelkronqvist@proton.me>2024-04-11 16:01:36 +0300
commita793df3e2a07c65f36fb2f5f43d2c51ab0c47bf2 (patch)
tree49858b1ef415ce16c843c4fbb4ab7eccaa73033d /config-parser.h
parent4ff6a08d73f0ef1e2fcb7a93a74cc6fa66c24e2b (diff)
downloadstdu-a793df3e2a07c65f36fb2f5f43d2c51ab0c47bf2.tar.gz
stdu-a793df3e2a07c65f36fb2f5f43d2c51ab0c47bf2.zip
Added help message & fixed blocksize bug
The bug was caused by integer overflow with too large precisions.
Diffstat (limited to 'config-parser.h')
-rw-r--r--config-parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config-parser.h b/config-parser.h
index 1026a98..08aa934 100644
--- a/config-parser.h
+++ b/config-parser.h
@@ -2,6 +2,7 @@
struct Config {
int precision;
bool human_readable;
+ bool help;
};
typedef struct Config Config;
struct Result {