Mercurial > ~dholland > hg > ag > index.cgi
comparison anagram/agcore/q5.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 * q5.h | |
7 */ | |
8 | |
9 #ifndef Q5_H | |
10 #define Q5_H | |
11 | |
12 extern int frameIndex; | |
13 extern int nInputRules; | |
14 extern tsd *lcft, *lcftp, *lgt; | |
15 | |
16 extern unsigned n_gotos; | |
17 extern unsigned n_completions; | |
18 extern unsigned n_conflicts; | |
19 extern unsigned n_reductions; | |
20 extern unsigned n_default_reductions; | |
21 | |
22 tsd *expand_state(int sn); | |
23 int find_ctn(int state); | |
24 void *size_prop(unsigned *, unsigned); | |
25 void lalr(void); | |
26 void rlalr(void); | |
27 | |
28 #endif /* Q5_H */ |