comparison anagram/agcore/operations.h @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13d2b8934445
1 /*
2 * AnaGram, A System for Syntax Directed Programming
3 * Copyright 1993-2002 Parsifal Software. All Rights Reserved.
4 * See the file COPYING for license and usage terms.
5 *
6 * operations.h
7 */
8
9 #ifndef OPERATIONS_H
10 #define OPERATIONS_H
11
12 class AgString; // from agstring.h
13
14
15 extern unsigned char *input_base;
16
17 void init_parser(void);
18 void reset_parser(void);
19
20 void analyzeGrammar(AgString data, int hasGui);
21 void buildParser(void);
22
23 #endif /* OPERATIONS_H */