summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-12 19:32:35 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-12 19:32:35 +0000
commit019ed9005f9ca0e450750eb303ef13511c945c39 (patch)
tree7657eae71a21f58ef2441f33bfe4c061b462e2e0 /epan/dtd_parse.l
parent3db317ca2bb2e2bbd1e8e4a394ff4635ebcedc5a (diff)
downloadwireshark-019ed9005f9ca0e450750eb303ef13511c945c39.tar.gz
Add a header file to declare routines defined in lexer and used in
parser, or vice versa. svn path=/trunk/; revision=15769
Diffstat (limited to 'epan/dtd_parse.l')
-rw-r--r--epan/dtd_parse.l7
1 files changed, 2 insertions, 5 deletions
diff --git a/epan/dtd_parse.l b/epan/dtd_parse.l
index 8c33ee26e6..249681c9b2 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -6,7 +6,7 @@
%{
- /* dtd_lexer.l
+ /* dtd_parse.l
* an XML dissector for ethereal
* lexical analyzer for DTDs
*
@@ -38,16 +38,13 @@
#include "dtd.h"
#include "dtd_grammar.h"
+#include "dtd_parse.h"
struct _proto_xmlpi_attr {
gchar* name;
void (*act)(gchar*);
};
- void DtdParse(void*,int,dtd_token_data_t*,dtd_build_data_t*);
- void *DtdParseAlloc(void *(*)(gulong));
- void DtdParseFree( void*, void(*)(void*) );
- void DtdParseTrace(FILE *TraceFILE, char *zTracePrompt);
void* pParser;
GString* input_string;
guint offset;