~ubuntu-branches/ubuntu/precise/graphviz/precise-updates

« back to all changes in this revision

Viewing changes to lib/common/htmlparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 02:06:56 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080208020656-a3cbewe5ly6dpj0s
Tags: 2.16-3ubuntu1
* Merge with Debian; remaining changes:
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev.
  - Build-depend on liblua50-dev instead of liblua5.1-0-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.1.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
1
/* A Bison parser, made by GNU Bison 2.3.  */
 
2
 
 
3
/* Skeleton interface for Bison's Yacc-like parsers in C
 
4
 
 
5
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
 
6
   Free Software Foundation, Inc.
5
7
 
6
8
   This program is free software; you can redistribute it and/or modify
7
9
   it under the terms of the GNU General Public License as published by
18
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
21
   Boston, MA 02110-1301, USA.  */
20
22
 
21
 
/* As a special exception, when this file is copied by Bison into a
22
 
   Bison output file, you may use that output file without restriction.
23
 
   This special exception was added by the Free Software Foundation
24
 
   in version 1.24 of Bison.  */
 
23
/* As a special exception, you may create a larger work that contains
 
24
   part or all of the Bison parser skeleton and distribute that work
 
25
   under terms of your choice, so long as that work isn't itself a
 
26
   parser generator using the skeleton or a modified version thereof
 
27
   as a parser skeleton.  Alternatively, if you modify or redistribute
 
28
   the parser skeleton itself, you may (at your option) remove this
 
29
   special exception, which will cause the skeleton and the resulting
 
30
   Bison output files to be licensed under the GNU General Public
 
31
   License without this special exception.
 
32
 
 
33
   This special exception was added by the Free Software Foundation in
 
34
   version 2.2 of Bison.  */
25
35
 
26
36
/* Tokens.  */
27
37
#ifndef YYTOKENTYPE
72
82
 
73
83
 
74
84
 
75
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
 
85
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 
86
typedef union YYSTYPE
76
87
#line 535 "../../lib/common/htmlparse.y"
77
 
typedef union YYSTYPE {
 
88
{
78
89
  int    i;
79
90
  htmltxt_t*  txt;
80
91
  htmlcell_t*  cell;
81
92
  htmltbl_t*   tbl;
82
93
  htmlfont_t*  font;
83
94
  htmlimg_t*   img;
84
 
} YYSTYPE;
85
 
/* Line 1447 of yacc.c.  */
86
 
#line 87 "y.tab.h"
 
95
}
 
96
/* Line 1489 of yacc.c.  */
 
97
#line 98 "y.tab.h"
 
98
        YYSTYPE;
87
99
# define htmlstype YYSTYPE /* obsolescent; will be withdrawn */
88
100
# define YYSTYPE_IS_DECLARED 1
89
101
# define YYSTYPE_IS_TRIVIAL 1
91
103
 
92
104
extern YYSTYPE htmllval;
93
105
 
94
 
 
95