Last change
on this file since 35 was
1,
checked in by Maciej Komosinski, 16 years ago
|
added f8 (L-systems) representation and converter f8->f1
|
File size:
380 bytes
|
Line | |
---|
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.