summary refs log tree commit diff
path: root/.bin/xx.c
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-05-01 15:18:21 -0400
committerJune McEnroe <programble@gmail.com>2017-05-01 15:18:21 -0400
commit68ba32ed684b3e6edc8095a08e67121158594854 (patch)
tree7037a4478817e6c146ed5e3111567d26341fbf36 /.bin/xx.c
parentClean up style in pbd (diff)
downloadsrc-68ba32ed684b3e6edc8095a08e67121158594854.tar.gz
src-68ba32ed684b3e6edc8095a08e67121158594854.zip
Clean up style in xx
Diffstat (limited to '.bin/xx.c')
-rwxr-xr-x.bin/xx.c14
1 files changed, 9 insertions, 5 deletions
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);
downJune McEnroe 2012-02-01Add tabular.vimJune McEnroe 2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe PS. Chris Kempson is a jerk. 2012-01-30Disable menu bar in GVimJune McEnroe 2012-01-30Set shiftwidth to 4 for LuaJune McEnroe 2012-01-29Don't show Syntastic errors automaticallyJune McEnroe 2012-01-28Update to Quicktask 1.1June McEnroe 2012-01-22Use space-test branch of quicktaskJune McEnroe 2012-01-22Enable syntax-based foldingJune McEnroe 2012-01-22Update quicktaskJune McEnroe 2012-01-22Revert "Add AutoClose"June McEnroe This reverts commit 39cfdd62ba82f93f68a2b5fa7b5771303d8b9dee. This fixes the delay when leaving insert mode 2012-01-22Revert "Disable powerline for now"June McEnroe This reverts commit fa48f5965c57272e616721d92475cd2f1e35f667. 2012-01-22Revert "Add VCS repo directories to wildignore"June McEnroe This reverts commit 41cb1db33ba7b64d8af63bf55bb82f7e8a617518. This fixes not being able to commit with vim-fugitive 2012-01-22Disable powerline for nowJune McEnroe 2012-01-22Update some pluginsJune McEnroe 2012-01-22Add VCS repo directories to wildignoreJune McEnroe 2012-01-22Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe 2012-01-22Add vim-spaceJune McEnroe 2012-01-22Add AutoCloseJune McEnroe 2012-01-22Add binding for GundoJune McEnroe 2012-01-22Add GundoJune McEnroe 2012-01-22Add Jellybeans colorschemeJune McEnroe 2012-01-22Add syntasticJune McEnroe 2012-01-21Add PowerlineJune McEnroe 2012-01-21Add quicktaskJune McEnroe 2012-01-15Moved comments out of mapsJune McEnroe 2012-01-14Disable scrollbarsJune McEnroe