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

« back to all changes in this revision

Viewing changes to agraph/grammar.h

  • 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
#ifndef Y_TAB_H
 
2
# define Y_TAB_H
 
3
 
 
4
typedef union   {
 
5
                        int                             i;
 
6
                        char                    *str;
 
7
                        struct Agnode_s *n;
 
8
} YYSTYPE;
 
9
# define        T_graph 257
 
10
# define        T_node  258
 
11
# define        T_edge  259
 
12
# define        T_digraph       260
 
13
# define        T_subgraph      261
 
14
# define        T_strict        262
 
15
# define        T_edgeop        263
 
16
# define        T_list  264
 
17
# define        T_attr  265
 
18
# define        T_atom  266
 
19
 
 
20
 
 
21
extern YYSTYPE ag_yylval;
 
22
 
 
23
#endif /* not Y_TAB_H */