source: git/old_modgen/modgen/stype.h @ 25fe907

spielwiese
Last change on this file since 25fe907 was c36fda, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Moved all the outdated modgen related stuff to /old_modgen/ for now
  • Property mode set to 100644
File size: 412 bytes
Line 
1#ifndef STYPE_H
2#define STYPE_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: flex/bison interface
8*/
9
10#include "modgen.h"
11
12typedef union
13{
14  int       i;
15  char    * name;
16  moddefv    lv;
17  stringdef sv;
18  paramdef  tp;
19} MYYSTYPE;
20#define YYSTYPE MYYSTYPE
21extern YYSTYPE  yylval;
22
23int yylex(MYYSTYPE *l);
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.