~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to tools/expr/expr.3

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.de L           \" literal font
 
2
.ft 5
 
3
.it 1 }N
 
4
.if !\\$1 \&\\$1 \\$2 \\$3 \\$4 \\$5 \\$6
 
5
..
 
6
.de LR
 
7
.}S 5 1 \& "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6"
 
8
..
 
9
.de RL
 
10
.}S 1 5 \& "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6"
 
11
..
 
12
.de EX          \" start example
 
13
.ta 1i 2i 3i 4i 5i 6i
 
14
.PP
 
15
.RS 
 
16
.PD 0
 
17
.ft 5
 
18
.nf
 
19
..
 
20
.de EE          \" end example
 
21
.fi
 
22
.ft
 
23
.PD
 
24
.RE
 
25
.PP
 
26
..
 
27
.TH AST 3
 
28
.SH NAME
 
29
expr \- c-like expression library
 
30
.SH SYNOPSIS
 
31
.EX
 
32
#include <expr.h>
 
33
 
 
34
Expr_t*          exopen(Exdisc_t*);
 
35
Excc_t*          exccopen(Expr_t*, Exccdisc_t*);
 
36
int              excc(Excc_t*, const char*, Exid_t*, int);
 
37
int              exccclose(Excc_t*);
 
38
void             exclose(Expr_t*, int);
 
39
char*            excontext(Expr_t*, char*, int);
 
40
void             exerror(const char*, ...);
 
41
Extype_t         exeval(Expr_t*, Exnode_t*, void*);
 
42
Exnode_t*        exexpr(Expr_t*, const char*, Exid_t*, int);
 
43
 
 
44
Exnode_t*        excast(Expr_t*, Exnode_t*, int, Exnode_t*, int);
 
45
Exnode_t*        exnewnode(Expr_t*, int, int, int, Exnode_t*, Exnode_t*);
 
46
void             exfreenode(Expr_t*, Exnode_t*);
 
47
int              expush(Expr_t*, const char*, int, const char*, Sfio_t*);
 
48
int              expop(Expr_t*);
 
49
int              excomp(Expr_t*, const char*, int, const char*, Sfio_t*);
 
50
int              exrewind(Expr_t*);
 
51
void             exstatement(Expr_t*);
 
52
int              extoken(Expr_t*);
 
53
char*            extype(int);
 
54
Extype_t         exzero(int);
 
55
 
 
56
.EE
 
57
.SH DESCRIPTION
 
58
 
 
59
exopen() is the first function called.
 
60
exclose() is the last function called.
 
61
exccopen() is the called if code generation will be used.
 
62
exccclose() releases the state information allocated in exccopen().
 
63
exstatement() saves statement start information.
 
64
exrewind() restores statement start information saved by exstatement().
 
65
 
 
66
.SH "SEE ALSO"