Deleted Added
full compact
yylex.c (50488) yylex.c (52555)
1/* yylex - scanner front-end for flex */
2
3/*-
4 * Copyright (c) 1990 The Regents of the University of California.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Vern Paxson.

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

21 * Neither the name of the University nor the names of its contributors may
22 * be used to endorse or promote products derived from this software without
23 * specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27 */
28
1/* yylex - scanner front-end for flex */
2
3/*-
4 * Copyright (c) 1990 The Regents of the University of California.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Vern Paxson.

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

21 * Neither the name of the University nor the names of its contributors may
22 * be used to endorse or promote products derived from this software without
23 * specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27 */
28
29/* $FreeBSD: head/usr.bin/lex/yylex.c 50488 1999-08-28 05:11:36Z peter $ */
29/* $Header: /home/daffy/u0/vern/flex/RCS/yylex.c,v 2.13 95/03/04 16:10:41 vern Exp $ */
30/* $FreeBSD: head/usr.bin/lex/yylex.c 52555 1999-10-27 07:56:49Z obrien $ */
30
31#include <ctype.h>
32#include "flexdef.h"
33#include "parse.h"
34
35
36/* yylex - scan for a regular expression token */
37

--- 179 unchanged lines hidden ---
31
32#include <ctype.h>
33#include "flexdef.h"
34#include "parse.h"
35
36
37/* yylex - scan for a regular expression token */
38

--- 179 unchanged lines hidden ---