From 22ddf92e89b19c30ff77b368cab60cc95315db35 Mon Sep 17 00:00:00 2001 From: zlg Date: Thu, 26 Sep 2013 07:17:51 -0500 Subject: Solve Exercise 5-11: `entab` and `detab` remixed! This one was pretty rough. At first I wanted to include a bunch of error-catching and "smart" stuff. When I took a second look at it and realized `itoa` returns 0 on a string, things became a bit easier. I may have been able to outsource a few things to a function or two, but overall I think it worked out. --- ch5/5-11_detab-remixed.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 ch5/5-11_detab-remixed.c (limited to 'ch5/5-11_detab-remixed.c') diff --git a/ch5/5-11_detab-remixed.c b/ch5/5-11_detab-remixed.c new file mode 100644 index 0000000..43bffb4 --- /dev/null +++ b/ch5/5-11_detab-remixed.c @@ -0,0 +1,61 @@ +#include + +/* The C Programming Language: 2nd Edition + * + * Exercise 5-11: Modify the programs entab and detab (written as exercises in + * Chapter 1) to accept a list of tab stops as arguments. Use the default tab + * settings if there are no arguments. + */ + +#define TABWIDTH 8 + +int main(int argc, char *argv[]) { + int column, c, tabnum, stop; + column = 0; + + if (argc > 1) { + tabnum = 1; + stop = atoi(argv[tabnum]); + } else { + tabnum = 0; + } + + while ((c = getchar()) != EOF) { + if (c == '\t') { + if (argc > 1) { + // advance the argument if we're ahead of the last one + if (column > stop && tabnum < (argc -1)) { + stop = atoi(argv[++tabnum]); + } + // insert our spaces up to the tabstop + while (column <= stop) { + putchar(' '); + column++; + } + // advance the argument (again) if needed. + if (tabnum < (argc - 1)) { + stop = atoi(argv[++tabnum]); + } + } else { + // default tabstopping + while (column % TABWIDTH != 1) { + putchar(' '); + column++; + } + } + } else { + // reset counters and the arglist + if (c == '\n') { + column = 0; + if (tabnum > 0) { + tabnum = 1; + stop = atoi(argv[tabnum]); + } + } + putchar(c); + column++; + } + } + + return 0; +} -- cgit v1.2.3-54-g00ecf