Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
/home/wireshark/builders/wireshark-master/ubuntu-16.04-x64/build/text2pcap.h
1 
17 #ifndef TEXT2PCAP_H
18 #define TEXT2PCAP_H
19 
20 typedef enum {
21  T_BYTE = 1,
22  T_OFFSET,
23  T_DIRECTIVE,
24  T_TEXT,
25  T_EOL
26 } token_t;
27 
28 int parse_token(token_t token, char *str);
29 
30 int text2pcap_scan(void);
31 
32 #endif
33 
34 /*
35  * Editor modelines - http://www.wireshark.org/tools/modelines.html
36  *
37  * Local variables:
38  * c-basic-offset: 4
39  * tab-width: 8
40  * indent-tabs-mode: nil
41  * End:
42  *
43  * vi: set shiftwidth=4 tabstop=8 expandtab:
44  * :indentSize=4:tabSize=8:noTabs=true:
45  */