Last change
on this file since 1111 was
193,
checked in by Maciej Komosinski, 11 years ago
|
Set svn:eol-style native for all textual files
|
-
Property svn:eol-style set to
native
|
File size:
380 bytes
|
Rev | Line | |
---|
[1] | 1 | /* |
---|
| 2 | * lexglobal.h |
---|
| 3 | * L-systemToF1 |
---|
| 4 | * |
---|
| 5 | * Created by Maciej Wajcht on 08-03-28. |
---|
| 6 | * Copyright 2008 __MyCompanyName__. All rights reserved. |
---|
| 7 | * |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | #ifndef YYSTYPE |
---|
| 11 | #include "sstring.h" |
---|
| 12 | |
---|
| 13 | typedef struct { |
---|
| 14 | double dblVal; |
---|
| 15 | SString strVal; |
---|
| 16 | struct symtab *symp; |
---|
| 17 | } yystype; |
---|
| 18 | # define YYSTYPE yystype |
---|
| 19 | # define YYSTYPE_IS_TRIVIAL 1 |
---|
| 20 | |
---|
| 21 | #endif |
---|
| 22 | |
---|
| 23 | /* extern YYSTYPE yylval; */ |
---|
| 24 | //YYSTYPE yylval; |
---|
Note: See
TracBrowser
for help on using the repository browser.