Deleted Added
full compact
extern.h (36053) extern.h (87693)
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)extern.h 8.1 (Berkeley) 6/6/93
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)extern.h 8.1 (Berkeley) 6/6/93
35 * $FreeBSD: head/usr.bin/vgrind/extern.h 87693 2001-12-11 23:10:26Z markm $
35 */
36
37typedef int boolean;
38
39extern boolean _escaped; /* if last character was an escape */
40extern char *s_start; /* start of the current string */
41extern char *l_acmbeg; /* string introducing a comment */
42extern char *l_acmend; /* string ending a comment */

--- 5 unchanged lines hidden (view full) ---

48extern char *l_comend; /* string ending a comment */
49extern char l_escape; /* character used to escape characters */
50extern char *l_keywds[]; /* keyword table address */
51extern boolean l_onecase; /* upper and lower case are equivalent */
52extern char *l_prcbeg; /* regular expr for procedure begin */
53extern char *l_strbeg; /* delimiter for string constant */
54extern char *l_strend; /* delimiter for string constant */
55extern boolean l_toplex; /* procedures only defined at top lex level */
36 */
37
38typedef int boolean;
39
40extern boolean _escaped; /* if last character was an escape */
41extern char *s_start; /* start of the current string */
42extern char *l_acmbeg; /* string introducing a comment */
43extern char *l_acmend; /* string ending a comment */

--- 5 unchanged lines hidden (view full) ---

49extern char *l_comend; /* string ending a comment */
50extern char l_escape; /* character used to escape characters */
51extern char *l_keywds[]; /* keyword table address */
52extern boolean l_onecase; /* upper and lower case are equivalent */
53extern char *l_prcbeg; /* regular expr for procedure begin */
54extern char *l_strbeg; /* delimiter for string constant */
55extern char *l_strend; /* delimiter for string constant */
56extern boolean l_toplex; /* procedures only defined at top lex level */
56extern char *language; /* the language indicator */
57extern const char *language; /* the language indicator */
57
58#include <sys/cdefs.h>
59
60__BEGIN_DECLS
61extern int STRNCMP __P((char *, char *, int));
62extern char *convexp __P((char *));
63extern char *expmatch __P((char *, char *, char *));
64__END_DECLS
65
58
59#include <sys/cdefs.h>
60
61__BEGIN_DECLS
62extern int STRNCMP __P((char *, char *, int));
63extern char *convexp __P((char *));
64extern char *expmatch __P((char *, char *, char *));
65__END_DECLS
66