Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
c_alike.tab.cpp
Go to the documentation of this file.
1 #include <string>
2 #include <stdio.h>
3 using std::string;
4 bool have_yy_error=false;
5 string parseCalike(char const *filename)
6 {
7  return "";
8 }
9 
10 int yylineno=0;
11 int yyerror(char *s){
12  printf("(yy)error: line %d text --\n",yylineno+1);
13 
14  return 1;
15 }
16 
17 int yywrap(){
18  return 1;
19 }
20 
21 
22 int yylex() {
23  return 1;
24 }