2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#) Copyright (c) 1990, 1993 The Regents of the University of California. All rights reserved.
33 * @(#)fold.c 8.1 (Berkeley) 6/6/93
34 * $FreeBSD: src/usr.bin/fold/fold.c,v 1.4.2.3 2002/07/11 01:01:44 tjr Exp $
35 * $DragonFly: src/usr.bin/fold/fold.c,v 1.5 2006/08/13 02:15:07 swildner Exp $
47 #define DEFLINEWIDTH 80
50 static int newpos(int, int);
51 static void usage(void);
53 int bflag
; /* Count bytes, not columns */
54 int sflag
; /* Split on word boundaries */
57 main(int argc
, char **argv
)
63 (void) setlocale(LC_CTYPE
, "");
66 while ((ch
= getopt(argc
, argv
, "0123456789bsw:")) != -1)
75 if ((width
= atoi(optarg
)) <= 0) {
76 errx(1, "illegal width value");
79 case '0': case '1': case '2': case '3': case '4':
80 case '5': case '6': case '7': case '8': case '9':
83 if (p
[0] == '-' && p
[1] == ch
&& !p
[2])
86 width
= atoi(argv
[optind
] + 1);
100 else for (; *argv
; ++argv
)
101 if (!freopen(*argv
, "r", stdin
)) {
112 (void)fprintf(stderr
, "usage: fold [-bs] [-w width] [file ...]\n");
117 * Fold the contents of standard input to fit within WIDTH columns (or bytes)
118 * and write to standard output.
120 * If sflag is set, split the line at the last space character on the line.
121 * This flag necessitates storing the line in a buffer until the current
122 * column > width, or a newline or EOF is read.
124 * The buffer can grow larger than WIDTH due to backspaces and carriage
125 * returns embedded in the input stream.
132 int ch
, col
, i
, indx
, space
;
134 col
= indx
= space
= 0;
135 while ((ch
= getchar()) != EOF
) {
138 fwrite(buf
, 1, indx
, stdout
);
143 if ((col
= newpos(col
, ch
)) > width
) {
146 while (--i
>= 0 && !isblank((unsigned char)buf
[i
]))
150 if (sflag
&& space
!= -1) {
152 fwrite(buf
, 1, space
, stdout
);
153 memmove(buf
, buf
+ space
, indx
- space
);
156 for (i
= 0; i
< indx
; i
++)
158 (unsigned char)buf
[i
]);
160 fwrite(buf
, 1, indx
, stdout
);
164 col
= newpos(col
, ch
);
166 if (indx
+ 1 > buf_max
) {
168 if ((buf
= realloc(buf
, buf_max
)) == NULL
)
175 fwrite(buf
, 1, indx
, stdout
);
179 * Update the current column position for a character.
182 newpos(int col
, int ch
)
197 col
= (col
+ 8) & ~7;