aboutsummaryrefslogtreecommitdiff
path: root/config-parser.h
diff options
context:
space:
mode:
authorJoel Kronqvist <joelkronqvist@proton.me>2024-04-11 16:17:46 +0300
committerJoel Kronqvist <joelkronqvist@proton.me>2024-04-13 18:31:30 +0300
commitf8f07ca39bd617ddaeb2149f138b12aa7a6532bf (patch)
treea47e8624bad148977b9f6014fcb90641a996c8a8 /config-parser.h
parenta793df3e2a07c65f36fb2f5f43d2c51ab0c47bf2 (diff)
downloadstdu-f8f07ca39bd617ddaeb2149f138b12aa7a6532bf.tar.gz
stdu-f8f07ca39bd617ddaeb2149f138b12aa7a6532bf.zip
Multiline printing & fixes to output space padding
Diffstat (limited to 'config-parser.h')
-rw-r--r--config-parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-parser.h b/config-parser.h
index 08aa934..3446826 100644
--- a/config-parser.h
+++ b/config-parser.h
@@ -1,8 +1,9 @@
struct Config {
- int precision;
bool human_readable;
bool help;
+ bool multiline;
+ int precision;
};
typedef struct Config Config;
struct Result {