Skip to content

Commit f4582fe

Browse files
committed
Code for release 4.04
1 parent 5d96e45 commit f4582fe

File tree

8 files changed

+183
-15
lines changed

8 files changed

+183
-15
lines changed

filter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Standard File Filter
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1987-89,1991,1993,1996-99,2002-05,2008
8-
@(#)Product: :PRODUCT:
8+
@(#)Product: SCC Version 4.04.20081127 (2008-11-27)
99
*/
1010

1111
/*TABSTOP=4*/

filter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Header for filter functions
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1993,1995-98,2003-04,2006,2008
8-
@(#)Product: :PRODUCT:
8+
@(#)Product: SCC Version 4.04.20081127 (2008-11-27)
99
*/
1010

1111
/*TABSTOP=4*/

scc.1

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.\" @(#)$Id: scc.1,v 1.1 2008/11/27 22:49:18 jleffler Exp $
2+
.\" @(#)Manual page: Application -- Part of application
3+
.ds fC "Version: $Revision: 1.1 $ ($Date: 2008/11/27 22:49:18 $)
4+
.TH PROG 1S "JLSS UNIX Tools"
5+
.SH NAME
6+
scc \(em Strip C or C++ comments from source code
7+
.SH SYNOPSIS
8+
\fBscc\fP [-wCV] [file ...]
9+
.SH DESCRIPTION
10+
The \fBscc\fP program strips C comments from source code.
11+
By default, it only eliminates classic C comments between `\*c/*\*d' and `\*c*/\*d'.
12+
By specifying `\*c-C\*d', you can also eliminate C++ and C99 comments between `\*c//\*d' and end of line.
13+
By specifying `\*c-w\*d', you can obtain warnings about nested C comments - that is, about `\*c/*\*d' appearing inside another classic C comment.
14+
The `\*c-V\*d' option prints the version information and exits.
15+
.P
16+
The \fBscc\*d' program is aware of the intricacies of backslash-newline, and single-quoted characters, and double-quoted character strings.
17+
Consequently, it correctly handles such bizarre comments as this:
18+
.P
19+
\*c/\e
20+
.br
21+
*\e
22+
.br
23+
*\e
24+
.br
25+
/\*d
26+
.br
27+
.SH AUTHOR
28+
Jonathan Leffler
29+
.br
30+
JLSS
31+
.br
32+
27th November 2008

scc.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
@(#)File: $RCSfile: scc.c,v $
3-
@(#)Version: $Revision: 4.3 $
4-
@(#)Last changed: $Date: 2007/12/14 23:44:09 $
3+
@(#)Version: $Revision: 4.4 $
4+
@(#)Last changed: $Date: 2008/08/09 20:15:06 $
55
@(#)Purpose: Strip C comments
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1991,1993,1997-98,2003,2005
@@ -41,7 +41,7 @@ static int nline = 0; /* Line counter */
4141
static const char usestr[] = "[-wCV] [file ...]";
4242

4343
#ifndef lint
44-
static const char rcs[] = "@(#)$Id: scc.c,v 4.3 2007/12/14 23:44:09 jleffler Exp $";
44+
static const char rcs[] = "@(#)$Id: scc.c,v 4.4 2008/08/09 20:15:06 jleffler Exp $";
4545
#endif
4646

4747
static int getch(FILE *fp)
@@ -70,12 +70,12 @@ static int peek(FILE *fp)
7070

7171
static void warning(const char *str, const char *file, int line)
7272
{
73-
err_report(ERR_REM, ERR_STAT, "%s:%ld: %s\n", file, line, str);
73+
err_report(ERR_REM, ERR_STAT, "%s:%d: %s\n", file, line, str);
7474
}
7575

7676
static void warning2(const char *s1, const char *s2, const char *file, int line)
7777
{
78-
err_report(ERR_REM, ERR_STAT, "%s:%ld: %s %s\n", file, line, s1, s2);
78+
err_report(ERR_REM, ERR_STAT, "%s:%d: %s %s\n", file, line, s1, s2);
7979
}
8080

8181
static void endquote(char q, FILE *fp, char *fn, const char *msg)
@@ -258,7 +258,7 @@ int main(int argc, char **argv)
258258
Cflag = 1;
259259
break;
260260
case 'V':
261-
err_version("SCC", "$Revision: 4.3 $ ($Date: 2007/12/14 23:44:09 $)");
261+
err_version("SCC", "$Revision: 4.4 $ ($Date: 2008/08/09 20:15:06 $)");
262262
break;
263263
default:
264264
err_usage(usestr);

scc.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Makefile automatically generated by bomrelease version 1.12
1+
# Makefile automatically generated by bomrelease version 1.17 (2008/11/18 22:15:54)
22
#
3-
# scc version 4.03 (2008-06-07)
3+
# scc version 4.04 (2008-11-27)
44

55
PROGRAM = scc
66
SOURCE = stderr.c filter.c scc.c

scc.test

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
/*
2+
@(#)File: $RCSfile: scc.test,v $
3+
@(#)Version: $Revision: 1.6 $
4+
@(#)Last changed: $Date: 2007/12/14 23:45:02 $
5+
@(#)Purpose: Test file for program SCC
6+
@(#)Author: J Leffler
7+
@(#)Copyright: (C) JLSS 1997,2003
8+
@(#)Product: SCC Version 4.04.20081127 (2008-11-27)
9+
*/
10+
11+
/*TABSTOP=4*/
12+
13+
// -- C++ comment
14+
15+
/*
16+
Multiline C-style comment
17+
#ifndef lint
18+
static const char sccs[] = "@(#)$Id: scc.test,v 1.6 2007/12/14 23:45:02 jleffler Exp $";
19+
#endif
20+
*/
21+
22+
/*
23+
Multi-line C-style comment
24+
with embedded /* in line %C% which should generate a warning
25+
if scc is run with the -w option
26+
Two comment starts /* embedded /* in line %C% should generate one warning
27+
*/
28+
29+
/* Comment */ Non-comment /* Comment Again */ Non-Comment Again /*
30+
Comment again on the next line */
31+
32+
// A C++ comment with a C-style comment marker /* in the middle
33+
This is plain text under C++ (C99) commenting - but comment body otherwise
34+
// A C++ comment with a C-style comment end marker */ in the middle
35+
36+
The following C-style comment end marker should generate a warning
37+
if scc is run with the -w option
38+
*/
39+
Two of these */ generate */ one warning
40+
41+
It is possible to have both warnings on a single line.
42+
Eg:
43+
*/ /* /* */ */
44+
45+
SCC has been trained to handle 'q' single quotes in most of
46+
the aberrant forms that can be used. '\0', '\\', '\'', '\\
47+
n' (a valid variant on '\n'), because the backslash followed
48+
by newline is elided by the token scanning code in CPP before
49+
any other processing occurs.
50+
51+
This is a legitimate equivalent to '\n' too: '\
52+
\n', again because the backslash/newline processing occurs early.
53+
54+
The non-portable 'ab', '/*', '*/', '//' forms are handled OK too.
55+
56+
The following quote should generate a warning from SCC; a
57+
compiler would not accept it. '
58+
\n'
59+
60+
" */ /* SCC has been trained to know about strings /* */ */"!
61+
"\"Double quotes embedded in strings, \\\" too\'!"
62+
"And \
63+
newlines in them"
64+
65+
"And escaped double quotes at the end of a string\""
66+
67+
aa '\\
68+
n' OK
69+
aa "\""
70+
aa "\
71+
\n"
72+
73+
This is followed by C++/C99 comment number 1.
74+
// C++/C99 comment with \
75+
continuation character \
76+
on three source lines (this should not be seen with the -C flag)
77+
The C++/C99 comment number 1 has finished.
78+
79+
This is followed by C++/C99 comment number 2.
80+
/\
81+
/\
82+
C++/C99 comment (this should not be seen with the -C flag)
83+
The C++/C99 comment number 2 has finished.
84+
85+
This is followed by regular C comment number 1.
86+
/\
87+
*\
88+
Regular
89+
comment
90+
*\
91+
/
92+
The regular C comment number 1 has finished.
93+
94+
/\
95+
\/ This is not a C++/C99 comment!
96+
97+
This is followed by C++/C99 comment number 3.
98+
/\
99+
\
100+
\
101+
/ But this is a C++/C99 comment!
102+
The C++/C99 comment number 3 has finished.
103+
104+
/\
105+
\* This is not a C or C++ comment!
106+
107+
This is followed by regular C comment number 2.
108+
/\
109+
*/ This is a regular C comment *\
110+
but this is just a routine continuation *\
111+
and that was not the end either - but this is *\
112+
\
113+
/
114+
The regular C comment number 2 has finished.
115+
116+
This is followed by regular C comment number 3.
117+
/\
118+
\
119+
\
120+
\
121+
* C comment */
122+
The regular C comment number 3 has finished.
123+
124+
More double quoted string stuff:
125+
126+
if (logtable_out)
127+
{
128+
sprintf(logtable_out,
129+
"insert into %s (bld_id, err_operation, err_expected, err_sql_stmt, err_sql_state)"
130+
" values (\"%s\", \"%s\", \"%s\", \"", str_logtable, blade, operation, expected);
131+
/* watch out for embedded double quotes. */
132+
}
133+
134+
135+
/* Non-terminated C-style comment at the end of the file

stderr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Error reporting routines
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1988-91,1996-99,2001,2003,2005-08
8-
@(#)Product: :PRODUCT:
8+
@(#)Product: SCC Version 4.04.20081127 (2008-11-27)
99
*/
1010

1111
/*TABSTOP=4*/

stderr.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
@(#)File: $RCSfile: stderr.h,v $
3-
@(#)Version: $Revision: 8.21 $
4-
@(#)Last changed: $Date: 2008/04/07 10:55:46 $
3+
@(#)Version: $Revision: 8.22 $
4+
@(#)Last changed: $Date: 2008/08/09 20:12:49 $
55
@(#)Purpose: Header file for standard error functions
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1989-93,1996-99,2003,2005-08
8-
@(#)Product: :PRODUCT:
8+
@(#)Product: SCC Version 4.04.20081127 (2008-11-27)
99
*/
1010

1111
#ifndef STDERR_H
@@ -14,7 +14,7 @@
1414
#ifdef MAIN_PROGRAM
1515
#ifndef lint
1616
/* Prevent over-aggressive optimizers from eliminating ID string */
17-
const char jlss_id_stderr_h[] = "@(#)$Id: stderr.h,v 8.21 2008/04/07 10:55:46 jleffler Exp $";
17+
const char jlss_id_stderr_h[] = "@(#)$Id: stderr.h,v 8.22 2008/08/09 20:12:49 jleffler Exp $";
1818
#endif /* lint */
1919
#endif
2020

@@ -88,6 +88,7 @@ extern void err_error(const char *format, ...) PRINTFLIKE(1,2) NORETURN();
8888
extern void err_error1(const char *s1) NORETURN();
8989
extern void err_error2(const char *s1, const char *s2) NORETURN();
9090
extern void err_help(const char *use_str, const char *hlp_str) NORETURN();
91+
extern void err_helplist(const char *use_str, const char * const *help_list) NORETURN();
9192
extern void err_internal(const char *function, const char *msg) NORETURN();
9293
extern void err_logmsg(FILE *fp, int flags, int estat, const char *format, ...) PRINTFLIKE(4,5);
9394
extern void err_print(int flags, int estat, const char *format, va_list args);

0 commit comments

Comments
 (0)