column = 0;
else if (c == '\t')
column = column + 8 - column % 8;
- else /* if (isprint (c)) */
+ else /* if (isprint(c)) */
column++;
} else
column++;
}
int fold_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int fold_main(int argc, char **argv)
+int fold_main(int argc UNUSED_PARAM, char **argv)
{
char *line_out = NULL;
int allocated_out = 0;
if (ENABLE_INCLUDE_SUSv2) {
/* Turn any numeric options into -w options. */
- for (i = 1; i < argc; i++) {
+ for (i = 1; argv[i]; i++) {
char const *a = argv[i];
if (*a++ == '-') {
}
goto rescan;
}
- } else {
- if (offset_out == 0) {
- line_out[offset_out++] = c;
- continue;
- }
+ }
+ if (offset_out == 0) {
+ line_out[offset_out++] = c;
+ continue;
}
line_out[offset_out++] = '\n';
fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
--- /dev/null
+#!/bin/sh
+# Copyright 2009 by Denys Vlasenko
+# Licensed under GPL v2, see file LICENSE for details.
+
+. testing.sh
+
+# testing "test name" "options" "expected result" "file input" "stdin"
+
+testing "fold -s" "fold -w 7 -s" \
+ "123456\n\t\nasdf" \
+ "" \
+ "123456\tasdf" \
+
+exit $FAILCOUNT