summaryrefslogtreecommitdiffstats
path: root/src/po-gram-gen.h
blob: dd0c6c9c67c30c2aa354cde33d05594c4c39e0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
typedef union
{
  struct { char *string; lex_pos_ty pos; bool obsolete; } string;
  struct { string_list_ty stringlist; lex_pos_ty pos; bool obsolete; } stringlist;
  struct { long number; lex_pos_ty pos; bool obsolete; } number;
  struct { lex_pos_ty pos; bool obsolete; } pos;
  struct { struct msgstr_def rhs; lex_pos_ty pos; bool obsolete; } rhs;
} YYSTYPE;
#define	COMMENT	257
#define	DOMAIN	258
#define	JUNK	259
#define	MSGID	260
#define	MSGID_PLURAL	261
#define	MSGSTR	262
#define	NAME	263
#define	NUMBER	264
#define	STRING	265


extern YYSTYPE yylval;