Deleted Added
full compact
extern.h (87693) extern.h (92922)
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 * $FreeBSD: head/usr.bin/vgrind/extern.h 92922 2002-03-22 01:42:45Z imp $
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 */

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

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 */
57extern const char *language; /* the language indicator */
58
59#include <sys/cdefs.h>
60
61__BEGIN_DECLS
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 */

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

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 */
57extern const char *language; /* the language indicator */
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 *));
62extern int STRNCMP(char *, char *, int);
63extern char *convexp(char *);
64extern char *expmatch(char *, char *, char *);
65__END_DECLS
66
65__END_DECLS
66