2011-06-08 20:30:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <ctype.h>
|
2015-02-01 00:24:03 +00:00
|
|
|
#include <stdint.h>
|
2011-06-08 20:30:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-03-16 18:26:42 +00:00
|
|
|
#include <string.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2011-06-08 20:30:33 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2015-03-13 22:47:41 +00:00
|
|
|
static int bflag = 0;
|
|
|
|
static int sflag = 0;
|
|
|
|
static size_t width = 80;
|
2011-06-08 20:30:33 +00:00
|
|
|
|
2015-01-25 20:22:17 +00:00
|
|
|
static void
|
2015-03-16 18:26:42 +00:00
|
|
|
foldline(const char *str) {
|
|
|
|
const char *p, *spacesect = NULL;
|
|
|
|
size_t col, off;
|
2015-01-25 20:22:17 +00:00
|
|
|
|
2015-03-16 18:26:42 +00:00
|
|
|
for (p = str, col = 0; *p && *p != '\n'; p++) {
|
|
|
|
if (!UTF8_POINT(*p) && !bflag)
|
|
|
|
continue;
|
|
|
|
if (col >= width) {
|
|
|
|
off = (sflag && spacesect) ? spacesect - str : p - str;
|
|
|
|
if (fwrite(str, 1, off, stdout) != off)
|
|
|
|
eprintf("fwrite <stdout>:");
|
|
|
|
putchar('\n');
|
|
|
|
spacesect = NULL;
|
|
|
|
col = 0;
|
|
|
|
p = str += off;
|
|
|
|
}
|
|
|
|
if (sflag && isspace(*p))
|
|
|
|
spacesect = p + 1;
|
|
|
|
if (!bflag && iscntrl(*p)) {
|
|
|
|
switch(*p) {
|
|
|
|
case '\b':
|
|
|
|
col -= (col > 0);
|
|
|
|
break;
|
|
|
|
case '\r':
|
|
|
|
col = 0;
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
col += (col + 1) % 8;
|
|
|
|
break;
|
2015-03-13 22:47:41 +00:00
|
|
|
}
|
2015-03-16 18:26:42 +00:00
|
|
|
} else {
|
|
|
|
col++;
|
2015-01-25 20:22:17 +00:00
|
|
|
}
|
2015-03-16 18:26:42 +00:00
|
|
|
}
|
|
|
|
fputs(str, stdout);
|
2015-01-25 20:22:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-03-13 22:47:41 +00:00
|
|
|
fold(FILE *fp, const char *fname)
|
2015-01-25 20:22:17 +00:00
|
|
|
{
|
|
|
|
char *buf = NULL;
|
|
|
|
size_t size = 0;
|
|
|
|
|
2015-03-27 13:49:48 +00:00
|
|
|
while (getline(&buf, &size, fp) > 0)
|
2015-03-13 22:47:41 +00:00
|
|
|
foldline(buf);
|
|
|
|
if (ferror(fp))
|
|
|
|
eprintf("getline %s:", fname);
|
2015-01-25 20:22:17 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2015-03-16 18:26:42 +00:00
|
|
|
eprintf("usage: %s [-bs] [-w num | -num] [FILE ...]\n", argv0);
|
2013-06-14 18:20:47 +00:00
|
|
|
}
|
|
|
|
|
2011-06-08 20:30:33 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
FILE *fp;
|
2015-03-13 22:47:41 +00:00
|
|
|
int ret = 0;
|
2011-06-08 20:30:33 +00:00
|
|
|
|
2013-06-14 18:20:47 +00:00
|
|
|
ARGBEGIN {
|
|
|
|
case 'b':
|
2014-11-13 20:24:47 +00:00
|
|
|
bflag = 1;
|
2013-06-14 18:20:47 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
2014-11-13 20:24:47 +00:00
|
|
|
sflag = 1;
|
2013-06-14 18:20:47 +00:00
|
|
|
break;
|
|
|
|
case 'w':
|
2015-02-01 00:24:03 +00:00
|
|
|
width = estrtonum(EARGF(usage()), 1, MIN(LLONG_MAX, SIZE_MAX));
|
2013-06-14 18:20:47 +00:00
|
|
|
break;
|
2013-11-11 19:53:01 +00:00
|
|
|
ARGNUM:
|
2015-05-19 21:43:58 +00:00
|
|
|
if (!(width = ARGNUMF()))
|
|
|
|
eprintf("illegal width value, too small\n");
|
2013-11-11 19:53:01 +00:00
|
|
|
break;
|
2013-06-14 18:20:47 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2015-03-13 22:47:41 +00:00
|
|
|
if (!argc) {
|
|
|
|
fold(stdin, "<stdin>");
|
2015-01-25 20:26:30 +00:00
|
|
|
} else {
|
2015-03-13 22:47:41 +00:00
|
|
|
for (; *argv; argc--, argv++) {
|
2015-05-19 15:44:15 +00:00
|
|
|
if (!strcmp(*argv, "-")) {
|
2015-05-15 11:28:39 +00:00
|
|
|
*argv = "<stdin>";
|
|
|
|
fp = stdin;
|
|
|
|
} else if (!(fp = fopen(*argv, "r"))) {
|
2015-03-13 22:47:41 +00:00
|
|
|
weprintf("fopen %s:", *argv);
|
|
|
|
ret = 1;
|
2015-05-15 11:28:39 +00:00
|
|
|
continue;
|
2014-04-22 10:43:01 +00:00
|
|
|
}
|
2015-05-15 11:28:39 +00:00
|
|
|
fold(fp, *argv);
|
|
|
|
if (fp != stdin && fshut(fp, *argv))
|
|
|
|
ret = 1;
|
2013-11-12 10:44:37 +00:00
|
|
|
}
|
2011-06-08 20:30:33 +00:00
|
|
|
}
|
2013-06-14 18:20:47 +00:00
|
|
|
|
2015-05-24 23:33:19 +00:00
|
|
|
ret |= fshut(stdin, "<stdin>") | fshut(stdout, "<stdout>");
|
|
|
|
|
|
|
|
return ret;
|
2011-06-08 20:30:33 +00:00
|
|
|
}
|