Fix ...$ to : $
[obnox/wireshark/wip.git] / epan / dtd_parse.h
1 /* dtd_parse.h
2 * an XML dissector for ethereal 
3 * header file to declare functions defined in lexer and used in parser,
4 * or vice versa
5 *
6 * Copyright 2004, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
7 *
8 * $Id: $
9 *
10 * Ethereal - Network traffic analyzer
11 * By Gerald Combs <gerald@ethereal.com>
12 * Copyright 1998 Gerald Combs
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
18
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 * GNU General Public License for more details.
23
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29 extern void DtdParse(void*,int,dtd_token_data_t*,dtd_build_data_t*);
30 extern void *DtdParseAlloc(void *(*)(gulong));
31 extern void DtdParseFree( void*, void(*)(void*) );
32 extern void DtdParseTrace(FILE *TraceFILE, char *zTracePrompt); 
33 extern int Dtd_Parse_lex(void);