Fix some gcc 'old-style function definition' warnings.
[metze/wireshark/wip.git] / text2pcap-scanner.l
1 /* -*-mode: flex-*- */
2
3 /*
4  * We don't use unput, so don't generate code for it.
5  */
6 %option nounput
7
8 %{
9
10 /********************************************************************************
11  *
12  * text2pcap-scanner.l
13  *
14  * Utility to convert an ASCII hexdump into a libpcap-format capture file
15  *
16  * (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
17  *
18  * $Id$
19  *
20  * Wireshark - Network traffic analyzer
21  * By Gerald Combs <gerald@wireshark.org>
22  * Copyright 1998 Gerald Combs
23  *
24  * This program is free software; you can redistribute it and/or
25  * modify it under the terms of the GNU General Public License
26  * as published by the Free Software Foundation; either version 2
27  * of the License, or (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program; if not, write to the Free Software
36  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
37  *
38  *******************************************************************************/
39
40 #include <stdio.h>
41 #include <stdlib.h>
42
43 #include "text2pcap.h"
44
45 /*
46  * Flex (v 2.5.35) uses this symbol to "exclude" unistd.h
47  */
48 #ifdef _WIN32
49 #define YY_NO_UNISTD_H
50 #endif
51
52 #ifdef _WIN32
53 /* disable Windows VC compiler warning "signed/unsigned mismatch" associated  */
54 /* with YY_INPUT code generated by flex versions such as 2.5.35.              */
55 #pragma warning (disable:4018)
56 #endif
57
58 %}
59
60 hexdigit [0-9A-Fa-f]
61 directive #TEXT2PCAP.*
62 comment #[^W].*
63 byte [0-9A-Fa-f][0-9A-Fa-f][ \t]
64 byte_eol [0-9A-Fa-f][0-9A-Fa-f]\r?\n
65 offset [0-9A-Fa-f]+[: \t]
66 offset_eol [0-9A-Fa-f]+\r?\n
67 text [^ \n\t]+
68 mailfwd >
69 eol \r?\n\r?
70
71 %%
72
73 {byte}            { parse_token(T_BYTE, yytext); }
74 {byte_eol}        { parse_token(T_BYTE, yytext); parse_token(T_EOL, NULL); }
75 {offset}          { parse_token(T_OFFSET, yytext); }
76 {offset_eol}      { parse_token(T_OFFSET, yytext); parse_token(T_EOL, NULL); }
77 {mailfwd}{offset} { parse_token(T_OFFSET, yytext+1); }
78 {eol}             { parse_token(T_EOL, NULL); }
79 [ \t]             ; /* ignore whitespace */
80 {directive}       { parse_token(T_DIRECTIVE, yytext); }
81 {comment}         ; /* ignore comments */
82 {text}            { parse_token(T_TEXT, yytext); }
83
84 %%
85
86 int yywrap(void)
87 {
88     return 1;
89 }