diff options
author | marcel <marcel@FreeBSD.org> | 2005-05-15 01:07:36 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2005-05-15 01:07:36 +0000 |
commit | af76c232de492b1de22ebf47a7d3cbeaf64e3715 (patch) | |
tree | 15f0dcedfa87e902cf6e4d513e0ce18e1e18315a /usr.bin/file2c | |
parent | a15208c6fbb88b817909d4ed60bc476644076486 (diff) | |
download | FreeBSD-src-af76c232de492b1de22ebf47a7d3cbeaf64e3715.zip FreeBSD-src-af76c232de492b1de22ebf47a7d3cbeaf64e3715.tar.gz |
Reindent and improve style(9) comformance.
Diffstat (limited to 'usr.bin/file2c')
-rw-r--r-- | usr.bin/file2c/file2c.c | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/usr.bin/file2c/file2c.c b/usr.bin/file2c/file2c.c index 4338c45..18c8be2 100644 --- a/usr.bin/file2c/file2c.c +++ b/usr.bin/file2c/file2c.c @@ -13,33 +13,33 @@ __FBSDID("$FreeBSD$"); #include <stdio.h> int -main(int argc, char **argv) +main(int argc, char *argv[]) { - int i,j,k; + int i, j, k; - if (argc > 1) - printf("%s\n",argv[1]); - k = 0; - j = 0; - while((i = getchar()) != EOF) { - if(k++) { - putchar(','); - j++; + if (argc > 1) + printf("%s\n", argv[1]); + k = 0; + j = 0; + while((i = getchar()) != EOF) { + if (k++) { + putchar(','); + j++; + } + if (j > 70) { + putchar('\n'); + j = 0; + } + printf("%d", i); + if (i > 99) + j += 3; + else if (i > 9) + j += 2; + else + j++; } - if (j > 70) { - putchar('\n'); - j = 0; - } - printf("%d",i); - if (i > 99) - j += 3; - else if (i > 9) - j += 2; - else - j++; - } - putchar('\n'); - if (argc > 2) - printf("%s\n",argv[2]); - return 0; + putchar('\n'); + if (argc > 2) + printf("%s\n", argv[2]); + return (0); } |