cmp(1): fix some build nits (to build on FreeBSD)
[dragonfly.git] / usr.bin / cmp / special.c
1 /*-
2  * Copyright (c) 1991, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
16  *
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
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/usr.bin/cmp/special.c,v 1.4.2.1 2001/11/21 10:47:54 dwmalone Exp $
30  * $DragonFly: src/usr.bin/cmp/special.c,v 1.3 2003/10/02 17:42:27 hmp Exp $
31  *
32  * @(#)special.c        8.3 (Berkeley) 4/2/94
33  */
34
35 #include <sys/types.h>
36
37 #include <err.h>
38 #include <stdint.h>
39 #include <stdlib.h>
40 #include <stdio.h>
41 #include <string.h>
42
43 #include "extern.h"
44
45 void
46 c_special(int fd1, const char *file1, off_t skip1, int fd2, const char *file2,
47           off_t skip2)
48 {
49         int ch1, ch2;
50         off_t byte, line;
51         FILE *fp1, *fp2;
52         int dfound;
53
54         if ((fp1 = fdopen(fd1, "r")) == NULL)
55                 err(ERR_EXIT, "%s", file1);
56         if ((fp2 = fdopen(fd2, "r")) == NULL)
57                 err(ERR_EXIT, "%s", file2);
58
59         dfound = 0;
60         while (skip1--)
61                 if (getc(fp1) == EOF)
62                         goto eof;
63         while (skip2--)
64                 if (getc(fp2) == EOF)
65                         goto eof;
66
67         for (byte = line = 1;; ++byte) {
68                 ch1 = getc(fp1);
69                 ch2 = getc(fp2);
70                 if (ch1 == EOF || ch2 == EOF)
71                         break;
72                 if (ch1 != ch2) {
73                         if (xflag) {
74                                 dfound = 1;
75                                 printf("%08jx %02x %02x\n",
76                                        (intmax_t)byte - 1, ch1, ch2);
77                         } else if (lflag) {
78                                 dfound = 1;
79                                 printf("%6jd %3o %3o\n",
80                                        (intmax_t)byte, ch1, ch2);
81                         } else {
82                                 diffmsg(file1, file2, byte, line);
83                                 /* NOTREACHED */
84                         }
85                 }
86                 if (ch1 == '\n')
87                         ++line;
88         }
89
90 eof:    if (ferror(fp1))
91                 err(ERR_EXIT, "%s", file1);
92         if (ferror(fp2))
93                 err(ERR_EXIT, "%s", file2);
94         if (feof(fp1)) {
95                 if (!feof(fp2))
96                         eofmsg(file1);
97         } else
98                 if (feof(fp2))
99                         eofmsg(file2);
100         if (dfound)
101                 exit(DIFF_EXIT);
102 }