Skip to content

Commit 551fe23

Browse files
committed
Code for release 5.05
1 parent f4582fe commit 551fe23

11 files changed

+571
-446
lines changed

README

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
SCC Version 5.05 (2012-01-23)
2+
3+
This is the source code to a program which is licenced under the terms of the
4+
GNU General Public License Version 3
5+
6+
You should have received a file COPYING containing the full licence.
7+
8+
Ideally, the build process should simply be a question of running:
9+
10+
make
11+
12+
If you have questions or comments, please contact the author:
13+
Jonathan Leffler via email at [email protected]
14+
15+
Package created: 2012-01-23

errhelp.c

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
/*
2+
@(#)File: $RCSfile: errhelp.c,v $
3+
@(#)Version: $Revision: 8.5 $
4+
@(#)Last changed: $Date: 2009/03/02 19:13:51 $
5+
@(#)Purpose: Print usage and help message in standard format.
6+
@(#)Author: J Leffler
7+
@(#)Copyright: (C) JLSS 2007-09
8+
@(#)Product: SCC Version 5.05 (2012-01-23)
9+
*/
10+
11+
/*TABSTOP=4*/
12+
13+
#include "stderr.h"
14+
#include <stdlib.h>
15+
16+
#ifndef lint
17+
/* Prevent over-aggressive optimizers from eliminating ID string */
18+
extern const char jlss_id_errhelp_c[];
19+
const char jlss_id_errhelp_c[] = "@(#)$Id: errhelp.c,v 8.5 2009/03/02 19:13:51 jleffler Exp $";
20+
#endif /* lint */
21+
22+
void err_helplist(const char *use_str, const char * const *hlp_lst)
23+
{
24+
FILE *fp = stdout;
25+
err_logmsg(fp, ERR_REM|ERR_NOARG0, EXIT_SUCCESS,
26+
"Usage: %s %s\n%s\n", err_getarg0(), use_str, hlp_lst[0]);
27+
while (*++hlp_lst != 0)
28+
fprintf(fp, "%s", hlp_lst[0]);
29+
exit(EXIT_SUCCESS);
30+
}
31+
32+
void err_help(const char *use_str, const char *hlp_str)
33+
{
34+
err_logmsg(stdout, ERR_ERR|ERR_NOARG0, EXIT_SUCCESS,
35+
"Usage: %s %s\n%s\n", err_getarg0(), use_str, hlp_str);
36+
/*NOTREACHED*/
37+
exit(EXIT_FAILURE);
38+
}
39+
40+
#ifdef TEST
41+
42+
#include <unistd.h>
43+
44+
static const char usestr[] = "[-hTV] [file ...]";
45+
46+
static const char hlpstr[] =
47+
"-V Print version information and exit\n"
48+
"-T Test operation\n"
49+
"-h Print this help message\n"
50+
;
51+
52+
static const char *hlplst[] =
53+
{
54+
"\nUse a help list when the help string is too long.\n"
55+
"The first help list item is normally a summary of what goes on.\n"
56+
"It is often beneficial to start it with a newline, as demonstrated here.\n"
57+
"The last line of the first item does not need a newline - but if present\n"
58+
"it separates the summary from the subsequent output.\n",
59+
60+
"-V Print (list variant) version information and exit\n",
61+
62+
"-T Test operation\n"
63+
"-h Print (list variant) this help message\n",
64+
65+
0
66+
};
67+
68+
int main(int argc, char **argv)
69+
{
70+
err_setarg0(argv[0]);
71+
if (fork() == 0)
72+
err_help(usestr, hlpstr);
73+
else
74+
{
75+
sleep(1);
76+
err_helplist(usestr, hlplst);
77+
}
78+
return(0);
79+
}
80+
81+
#endif /* TEST */

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: SCC Version 4.04.20081127 (2008-11-27)
8+
@(#)Product: SCC Version 5.05 (2012-01-23)
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: SCC Version 4.04.20081127 (2008-11-27)
8+
@(#)Product: SCC Version 5.05 (2012-01-23)
99
*/
1010

1111
/*TABSTOP=4*/

posixver.h

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
@(#)File: $RCSfile: posixver.h,v $
3+
@(#)Version: $Revision: 1.1 $
4+
@(#)Last changed: $Date: 2010/08/29 00:27:48 $
5+
@(#)Purpose: Request appropriate POSIX and X/Open Support
6+
@(#)Author: J Leffler
7+
@(#)Copyright: (C) JLSS 2010
8+
@(#)Product: SCC Version 5.05 (2012-01-23)
9+
*/
10+
11+
/*TABSTOP=4*/
12+
13+
#ifndef JLSS_ID_POSIXVER_H
14+
#define JLSS_ID_POSIXVER_H
15+
16+
/*
17+
** Include this file before including system headers. By default, with
18+
** C99 support from the compiler, it requests POSIX 2001 support. With
19+
** C89 support only, it requests POSIX 1997 support. Override the
20+
** default behaviour by setting either _XOPEN_SOURCE or _POSIX_C_SOURCE.
21+
*/
22+
23+
/* _XOPEN_SOURCE 700 is loosely equivalent to _POSIX_C_SOURCE 200809L */
24+
/* _XOPEN_SOURCE 600 is loosely equivalent to _POSIX_C_SOURCE 200112L */
25+
/* _XOPEN_SOURCE 500 is loosely equivalent to _POSIX_C_SOURCE 199506L */
26+
27+
#if !defined(_XOPEN_SOURCE) && !defined(_POSIX_C_SOURCE)
28+
#if __STDC_VERSION__ >= 199901L
29+
#define _XOPEN_SOURCE 600 /* SUS v3, POSIX 1003.1 2004 (POSIX 2001 + Corrigenda) */
30+
#else
31+
#define _XOPEN_SOURCE 500 /* SUS v2, POSIX 1003.1 1997 */
32+
#endif /* __STDC_VERSION__ */
33+
#endif /* !_XOPEN_SOURCE && !_POSIX_C_SOURCE */
34+
35+
#endif /* JLSS_ID_POSIXVER_H */

scc.1

+31-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,36 @@
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 $)
1+
.\" @(#)$Id: scc.1,v 1.2 2012/01/23 19:22:56 jleffler Exp $
2+
.\" @(#)Manual page: SCC - Strip C Comments
3+
.ds fC "Version: $Revision: 1.2 $ ($Date: 2012/01/23 19:22:56 $)
44
.TH PROG 1S "JLSS UNIX Tools"
55
.SH NAME
6-
scc \(em Strip C or C++ comments from source code
6+
scc \(em Strip C comments from source code
77
.SH SYNOPSIS
8-
\fBscc\fP [-wCV] [file ...]
8+
\fBscc\fP [-chnwCV][-s rep][-q rep] [file ...]
99
.SH DESCRIPTION
1010
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.
11+
By default, it eliminates both classic C comments between `\*c/*\*d' and
12+
`\*c*/\*d' and C++ and C99 comments between `\*c//\*d' and end of line.
13+
By specifying `\*c-C\*d', you can arrange to eliminate only classic C
14+
comments.
15+
By specifying `\*c-w\*d', you can obtain warnings about nested C
16+
comments - that is, about `\*c/*\*d' appearing inside another classic C
17+
comment.
18+
The `\*c-c\*d' option prints comments and not the code.
19+
The `\*c-n\*d' option keeps newlines in comments, so the input and
20+
output line counts should be the same, even though comments were
21+
stripped.
22+
.P
23+
The `\*c-s rep\*d' option replaces the body of string literals with the
24+
single character specified by `\*crep\*d', which can simplify some forms
25+
of analysis.
26+
Similarly, the `\*d-q rep\*d' option replaces the body of character
27+
literals with the single character specified by `\*crep\*d'.
28+
.P
1429
The `\*c-V\*d' option prints the version information and exits.
30+
The `\*c-h\*d' option prints a help message and exits.
1531
.P
16-
The \fBscc\*d' program is aware of the intricacies of backslash-newline, and single-quoted characters, and double-quoted character strings.
32+
The \fBscc\*d' program is aware of the intricacies of backslash-newline,
33+
and single-quoted characters, and double-quoted character strings.
1734
Consequently, it correctly handles such bizarre comments as this:
1835
.P
1936
\*c/\e
@@ -24,9 +41,13 @@ Consequently, it correctly handles such bizarre comments as this:
2441
.br
2542
/\*d
2643
.br
44+
.SH BUGS
45+
Earlier versions of \fBscc\fP used `\*c-C\*d' to enable the removal of
46+
C99 or C++ comments.
47+
The behaviour was reversed in version 5.3.
2748
.SH AUTHOR
2849
Jonathan Leffler
2950
.br
3051
JLSS
3152
.br
32-
27th November 2008
53+
23rd January 2012

0 commit comments

Comments
 (0)