2 * Copyright (c) 1980, 1987, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1980, 1987, 1991, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)wc.c 8.1 (Berkeley) 6/6/93
31 * $FreeBSD: head/usr.bin/wc/wc.c 281617 2015-04-16 21:44:35Z bdrewery $
34 #include <sys/param.h>
50 static uintmax_t tlinect
, twordct
, tcharct
, tlongline
;
51 static int doline
, doword
, dochar
, domulti
, dolongline
;
52 static volatile sig_atomic_t siginfo
;
54 static void show_cnt(const char *file
, uintmax_t linect
, uintmax_t wordct
,
55 uintmax_t charct
, uintmax_t llct
);
56 static int cnt(const char *);
57 static void usage(void);
60 siginfo_handler(int sig __unused
)
70 signal(SIGINFO
, SIG_DFL
);
75 main(int argc
, char *argv
[])
77 int ch
, errors
, total
;
79 setlocale(LC_CTYPE
, "");
81 while ((ch
= getopt(argc
, argv
, "clmwL")) != -1) {
108 signal(SIGINFO
, siginfo_handler
);
110 /* Wc's flags are on by default. */
111 if (doline
+ doword
+ dochar
+ domulti
+ dolongline
== 0)
112 doline
= doword
= dochar
= 1;
128 show_cnt("total", tlinect
, twordct
, tcharct
, tlongline
);
129 exit(errors
== 0 ? 0 : 1);
133 show_cnt(const char *file
, uintmax_t linect
, uintmax_t wordct
,
134 uintmax_t charct
, uintmax_t llct
)
146 fprintf(out
, " %7ju", linect
);
148 fprintf(out
, " %7ju", wordct
);
149 if (dochar
|| domulti
)
150 fprintf(out
, " %7ju", charct
);
152 fprintf(out
, " %7ju", llct
);
154 fprintf(out
, " %s\n", file
);
160 cnt(const char *file
)
163 uintmax_t linect
, wordct
, charct
, llct
, tmpll
;
168 u_char buf
[MAXBSIZE
];
172 linect
= wordct
= charct
= llct
= tmpll
= 0;
176 if ((fd
= open(file
, O_RDONLY
)) < 0) {
177 warn("%s: open", file
);
180 if (doword
|| (domulti
&& MB_CUR_MAX
!= 1))
183 * Line counting is split out because it's a lot faster to get
184 * lines than to get words, since the word count requires some
188 while ((len
= read(fd
, buf
, MAXBSIZE
))) {
190 warn("%s: read", file
);
195 show_cnt(file
, linect
, wordct
, charct
,
199 for (p
= buf
; len
--; ++p
) {
214 if (llct
> tlongline
)
217 show_cnt(file
, linect
, wordct
, charct
, llct
);
222 * If all we need is the number of characters and it's a
223 * regular file, just stat the puppy.
225 if (dochar
|| domulti
) {
226 if (fstat(fd
, &sb
)) {
227 warn("%s: fstat", file
);
231 if (S_ISREG(sb
.st_mode
)) {
234 show_cnt(file
, linect
, wordct
, charct
, llct
);
242 /* Do it the hard way... */
245 memset(&mbs
, 0, sizeof(mbs
));
246 while ((len
= read(fd
, buf
, MAXBSIZE
)) != 0) {
248 warn("%s: read", file
!= NULL
? file
: "stdin");
255 show_cnt(file
, linect
, wordct
, charct
, llct
);
256 if (!domulti
|| MB_CUR_MAX
== 1) {
258 wch
= (unsigned char)*p
;
259 } else if ((clen
= mbrtowc(&wch
, p
, len
, &mbs
)) ==
264 file
!= NULL
? file
: "stdin");
267 memset(&mbs
, 0, sizeof(mbs
));
269 wch
= (unsigned char)*p
;
270 } else if (clen
== (size_t)-2)
294 if (domulti
&& MB_CUR_MAX
> 1)
295 if (mbrtowc(NULL
, NULL
, 0, &mbs
) == (size_t)-1 && !warned
)
296 warn("%s", file
!= NULL
? file
: "stdin");
301 if (dochar
|| domulti
)
304 if (llct
> tlongline
)
307 show_cnt(file
, linect
, wordct
, charct
, llct
);
315 fprintf(stderr
, "usage: wc [-Lclmw] [file ...]\n");