comparison anagram/agcore/nckwtr.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 * nckwtr.h - Conflict/Keyword Anomaly Trace Utility
7 */
8
9 #ifndef NCKWTR_H
10 #define NCKWTR_H
11
12 #include "agarray.h"
13
14 extern AgArray<int> new_conflict_stack;
15 extern int new_conflict_stack_depth;
16 extern AgArray<int> new_reduction_stack;
17 extern int new_reduction_stack_depth;
18 extern tsd *new_rule_derivation;
19
20 void clear_conflict_expansion(void);
21 void analyze_conflict(int, int, int, int);
22
23 #endif /* NCKWTR_H */