From 68ba32ed684b3e6edc8095a08e67121158594854 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 1 May 2017 15:18:21 -0400 Subject: Clean up style in xx --- .bin/xx.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to '.bin/xx.c') diff --git a/.bin/xx.c b/.bin/xx.c index e92d12d3..269c9d55 100755 --- a/.bin/xx.c +++ b/.bin/xx.c @@ -44,8 +44,9 @@ void dump(size_t cols, size_t group, uint8_t flags, FILE *file) { skip = false; } - if (flags & FLAG_OFFSET) + if (flags & FLAG_OFFSET) { printf("%08zx: ", offset); + } for (size_t i = 0; i < len; ++i) { if (group && i && !(i % group)) printf(" "); @@ -53,11 +54,13 @@ void dump(size_t cols, size_t group, uint8_t flags, FILE *file) { } if (flags & FLAG_ASCII) { - for (size_t i = len; i < cols; ++i) + for (size_t i = len; i < cols; ++i) { printf((group && !(i % group)) ? " " : " "); + } printf(" "); - for (size_t i = 0; i < len; ++i) + for (size_t i = 0; i < len; ++i) { printf("%c", isprint(buf[i]) ? buf[i] : '.'); + } } printf("\n"); @@ -81,7 +84,7 @@ int main(int argc, char *argv[]) { char *path = NULL; int opt; - while ((opt = getopt(argc, argv, "ac:fg:hku")) > 0) { + while (0 < (opt = getopt(argc, argv, "ac:fg:hku"))) { switch (opt) { case 'a': flags ^= FLAG_ASCII; break; case 'f': flags ^= FLAG_OFFSET; break; @@ -95,8 +98,9 @@ int main(int argc, char *argv[]) { } } if (!cols) return EX_USAGE; - if (argc > optind) + if (argc > optind) { path = argv[optind]; + } FILE *file = path ? fopen(path, "r") : stdin; if (!file) err(EX_NOINPUT, "%s", path); -- cgit 1.4.1 option>
path: root/unscoop.1 (unfollow)
Commit message (Collapse)Author
2019-12-30Add -D flag to prospective scoop manualJune McEnroe
2019-12-30Order results by ID in outer query in litterboxJune McEnroe
2019-12-30Use X macro for Type enumJune McEnroe
2019-12-30Remove scoop -ABCJune McEnroe
I can almost get these to work with an inner and outer SQL query, but when contexts starts overlapping it becomes a disaster, so I'm leavin it out at least for now.
2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe