C++ compilation.
[idzebra-moved-to-github.git] / dfa / lexer.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: lexer.h,v $
7  * Revision 1.4  1999-05-26 07:49:12  adam
8  * C++ compilation.
9  *
10  * Revision 1.3  1999/02/02 14:50:11  adam
11  * Updated WIN32 code specific sections. Changed header.
12  *
13  * Revision 1.2  1995/01/24 16:00:22  adam
14  * Added -ansi to CFLAGS.
15  * Some changes to the dfa module.
16  *
17  * Revision 1.1  1994/09/26  10:16:55  adam
18  * First version of dfa module in alex. This version uses yacc to parse
19  * regular expressions. This should be hand-made instead.
20  *
21  */
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 int        read_file      ( const char *, struct DFA * );
28 void       error          ( const char *, ... );
29
30 extern int ccluse;
31
32 #ifdef __cplusplus
33 }
34 #endif
35