Mercurial > ~dholland > hg > ag > index.cgi
comparison anagram/agcore/ut.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 * ut.h | |
7 */ | |
8 | |
9 #ifndef UT_H | |
10 #define UT_H | |
11 | |
12 class AgString; // from agstring.h | |
13 class Token; // from token.h | |
14 | |
15 void append_ascii_char(unsigned int j); | |
16 void append_char_range(int i, int j); | |
17 void append_char_rep(int j); | |
18 void append_item(int f, int x); | |
19 void append_item_brkt(int f, int brkt); | |
20 void append_string_char(int j); | |
21 void atkn(Token); | |
22 void avptkn(int tn); | |
23 AgString proc_name_string(int pn); | |
24 AgString token_string(unsigned tn); | |
25 | |
26 #endif /* UT_H */ |