VirtualBox

source: kBuild/trunk/src/kmk/kmkbuiltin/cmp.c@ 2856

Last change on this file since 2856 was 2113, checked in by bird, 16 years ago

kmkbuiltin: include config.h

  • Property svn:eol-style set to native
File size: 4.2 KB
Line 
1/* $NetBSD: cmp.c,v 1.15 2006/01/19 20:44:57 garbled Exp $ */
2
3/*
4 * Copyright (c) 1987, 1990, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32/*__COPYRIGHT("@(#) Copyright (c) 1987, 1990, 1993, 1994\n\
33 The Regents of the University of California. All rights reserved.\n");
34static char sccsid[] = "@(#)cmp.c 8.3 (Berkeley) 4/2/94";
35__RCSID("$NetBSD: cmp.c,v 1.15 2006/01/19 20:44:57 garbled Exp $"); */
36
37#include "config.h"
38#include <sys/types.h>
39#include "err.h"
40#include <errno.h>
41#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44#include <locale.h>
45#ifndef _MSC_VER
46# include <unistd.h>
47#else
48# define MSC_DO_64_BIT_IO /* for correct off_t */
49# include "mscfakes.h"
50#endif
51#include "getopt.h"
52#include "kmkbuiltin.h"
53#include "cmp_extern.h"
54
55
56static const struct option long_options[] =
57{
58 { "help", no_argument, 0, 261 },
59 { "version", no_argument, 0, 262 },
60 { 0, 0, 0, 0 },
61};
62
63
64static int usage(FILE *);
65
66int
67kmk_builtin_cmp(int argc, char *argv[], char **envp)
68{
69 off_t skip1 = 0, skip2 = 0;
70 int lflag = 0, sflag = 0;
71 int ch;
72 char *file1, *file2;
73
74#ifdef kmk_builtin_cmp
75 setlocale(LC_ALL, "");
76#endif
77
78 /* reset getopt and set progname. */
79 g_progname = argv[0];
80 opterr = 1;
81 optarg = NULL;
82 optopt = 0;
83 optind = 0; /* init */
84
85 while ((ch = getopt_long(argc, argv, "ls", long_options, NULL)) != -1)
86 {
87 switch (ch)
88 {
89 case 'l': /* print all differences */
90 lflag = 1;
91 break;
92 case 's': /* silent run */
93 sflag = 1;
94 break;
95 case 261:
96 usage(stdout);
97 return 0;
98 case 262:
99 return kbuild_version(argv[0]);
100 case '?':
101 default:
102 return usage(stderr);
103 }
104 }
105 argv += optind;
106 argc -= optind;
107
108 if (argc < 2 || argc > 4)
109 return usage(stderr);
110
111 file1 = argv[0];
112 file2 = argv[1];
113
114 if (argc > 2)
115 {
116 char *ep;
117
118 errno = 0;
119 skip1 = strtoll(argv[2], &ep, 0);
120 if (errno || ep == argv[2])
121 return errx(ERR_EXIT, "strtoll(%s,,) failed", argv[2]);
122
123 if (argc == 4)
124 {
125 skip2 = strtoll(argv[3], &ep, 0);
126 if (errno || ep == argv[3])
127 return errx(ERR_EXIT, "strtoll(%s,,) failed", argv[3]);
128 }
129 }
130
131 return cmp_file_and_file_ex(file1, skip1, file2, skip2, sflag, lflag, 0);
132}
133
134static int
135usage(FILE *fp)
136{
137 fprintf(fp, "usage: %s [-l | -s] file1 file2 [skip1 [skip2]]\n"
138 " or: %s --help\n"
139 " or: %s --version\n",
140 g_progname, g_progname, g_progname);
141 return ERR_EXIT;
142}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette