-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.c
95 lines (85 loc) · 2.66 KB
/
common.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// $Id: common.c,v 1.12 2005/09/09 12:04:48 daveewart Exp $
#include <stdio.h>
#include <stdlib.h>
#include "const.h"
/*
*
* DosUnix - File converter - changes DOS end-of-lines to Unix
* end-of-lines
* Copyright (C)1997-2002 Dave Ewart ([email protected])
*
* This file is part of the DosUnix project.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
int NoInput(char *somefile);
int NoOutput(char *somefile);
int PrintSummary(char *progname, long NumChanges);
int BasicInfo(char *progname);
int UsageInfo(char *command, int style);
int ShowOptions(char *command);
int NoInput(char *somefile)
{
printf("ERROR: Cannot open input file: %s\n", somefile);
return (0);
}
int NoOutput(char *somefile)
{
printf("ERROR: Cannot open output file: %s\n", somefile);
return (0);
}
int PrintSummary(char *progname, long NumChanges)
{
printf("%s %s - SUMMARY: A total of %ld ", progname, VERSION,
NumChanges);
printf("end of line characters were modified.\n");
return (0);
}
int BasicInfo(char *progname)
{
printf("%s version %s ", progname, VERSION);
printf("(C)%s %s (%s)\n", COPYYEAR, AUTHOR, AUTHOREMAIL);
printf("%s is part of the DosUnix project.\n", progname);
return (0);
}
int FullInfo(char *progname)
{
printf("Last revised %s\n\n", REVDATE);
printf("%s comes with ABSOLUTELY NO WARRANTY. This is free software\n",
progname);
printf("and you are welcome to redistribute it under certain conditions.\n");
printf("Read the file COPYING supplied with this distribution, or\n");
printf("http://www.gnu.org/licenses/gpl.txt for details.\n\n");
return (0);
}
int UsageInfo(char *command, int style)
{
printf("Usage:\n");
if (style == 1)
{
printf(" %s INPUTFILE\n\n", command);
}
else
{
printf(" %s INPUTFILE OUTPUTFILE\n\n", command);
}
return (0);
}
int ShowOptions(char *command)
{
printf(" %s -V for version and license info;\n", command);
printf(" %s -h for usage info\n", command);
return (0);
}