-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpb_basic.c
1517 lines (1100 loc) · 30.1 KB
/
pb_basic.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* A tiny BASIC interpreter */
/* i started with windows c++ program :
* http://www.programmersheaven.com/download/16060/download.aspx
*Submitted By: WEBMASTER
**
*
* problems - one character variables! (but it is fast)
* - if expresions >= <=
* help with these @ ~ $ _ [ ] ' \ : ? ! { } `
* already used , ; " + - * ^ % & |
* not good candidates:
* [] can be used by mistake or ARRAY
* {} can be used by mistake
* \ backslash...problems of bkslashing it
* '` problems of bkslashing it
*
*
*******************************************
* I added
*******************************************
*
* CONTINUE
* # , COMMENT
* evaluation of conditions arithmeticaly
*2byte symbol ... 1byte internal representation
* == ... ~
* && ... @
* || ... $
* >= ... :
* <= ... _
* != ... !
*******************************************
* long variable names:
* max 26 single letters
* max 100 additional words, words+numbers
* max 12 characters length
********************************************
* Performance
* parsing 10-20 var names + 5-7 conditions + division ~ 10us on 1.6GHz
*
*/
/* stdio = printf
* stdlib = calloc, exit, free
*/
#include <stdio.h>
#include <stdlib.h>
//
#include <setjmp.h>
// return from a long jump - take care when u use signals
#include <math.h>
// pow()
#include <ctype.h>
// ctype: isalnum, isalpha, isdigit....
#include <string.h>
// critical
#define NUM_LAB 100
#define LAB_LEN 10
#define FOR_NEST 25
#define SUB_NEST 25
#define PROG_SIZE 10000
// tok_type
#define DELIMITER 1
#define VARIABLE 2
#define NUMBER 3
#define COMMAND 4
#define STRING 5
#define QUOTE 6
//bas_tok
#define PRINT 1
#define INPUT 2
#define IF 3
#define THEN 4
#define FOR 5
#define NEXT 6
#define TO 7
#define GOTO 8
#define EOL 9
#define FINISHED 10
#define GOSUB 11
#define RETURN 12
#define END 13
#define COMMENT 14
#define CONTINUE 15
char *prog; /* holds expression to be analyzed */
jmp_buf e_buf; /* hold environment for longjmp() */
/*
double variables[26]= { // 26 user variables, A-Z
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0
};
*/
// #define MAXVARNAMES 100
#define MAXVARIABLES 400
int varnamelast=0; // keeps in mind the end of the var buffer
int currentline=0;
/*
* CORRECT DECLARATIONS OF CHAR *
*/
//char achar[5]={"ahoj"}; //ok
//char achar[5]={"ahoj"};//ok
//char achar[5]={"ahojkut"};//not ok
//char varname[MAXVARNAMES][12]={ //ok each field has 11 chars+null at max
char varname[MAXVARIABLES][13];
double variables[MAXVARIABLES];
struct commands { /* keyword lookup table */
char command[20];
char tok;
} table[] = { /* Commands must be entered lowercase */
{"print", PRINT}, /* in this table. */
{ "input", INPUT},
{ "if", IF},
{ "then", THEN},
{"goto", GOTO},
{"for", FOR},
{ "next", NEXT},
{ "to", TO},
{ "gosub", GOSUB},
{ "return", RETURN},
{ "end", END},
{ "comment", COMMENT},
{ "continue", CONTINUE},
{ "", END} /* mark end of table */
};
// # makes comment
char bas_token[80];
char bas_token_type, bas_tok;
struct label {
char name[LAB_LEN];
char *p; /* points to place to go in source file*/
};
struct label label_table[NUM_LAB];
// I do not understand this declaration.
// works ok with g++
// fails under root
//char *find_label(), *gpop();
struct for_stack {
int var; /* counter variable */
double target; /* target value */
char *loc;
} fstack[FOR_NEST]; /* stack for FOR/NEXT loop */
struct for_stack fpop();
char *gstack[SUB_NEST]; /* stack for gosub */
int ftos; /* index to top of FOR stack */
int gtos; /* index to top of GOSUB stack */
double find_var(char* s);
void unary(char o, double* r);
void arith(char o, double* r, double* h);
void primitive(double* result);
void level6(double* result);
void level5(double* result);
void level4(double* result);
void level3(double* result);
void level2(double* result);
int iswhite(char c);
int isdelim(char c);
//----------
double lookup_table2(char* s); //get formula value,calls lookup_table(s)
int lookup_table_tk(const char* token);//find var pos.(not in basic)
int lookup_table(); //get/set var in table
//---------
int look_up(char* s);
void putback();
int get_token();
void serror(int error);
void get_exp(double* result);
char *gpop();
void gpush(char* s);
void greturn();
void gosub();
void input();
struct for_stack fpop();
void fpush(void* i);
void next();
void exec_for();
void exec_if();
void label_init();
void exec_goto();
char *find_label(char* s);
int get_next_label(char* s);
void find_eol();
void scan_labels();
void print();
// int assignment(int var, double value);
int assignment();
int load_program(char* p, char* fname);
/*
* when used within a body, you need to reset the basic environment
*/
int init_namespace(){
int i;
for ( i=0;i<MAXVARIABLES;i++){ strcpy(varname[i],(char*)" \0"); }
for ( i=0;i<MAXVARIABLES;i++){ variables[i]=0; }
// for ( i=0;i<MAXVARIABLES;i++){ strncpy(varname[i]," ",12); }
varnamelast=0;
ftos = 0; /* initialize the FOR stack index */
gtos = 0; /* initialize the GOSUB stack index */
return 0;
}//init_namespace
int run_program(char* p_buf){
int i;
// I REMOVED THIS AND PUT IT IN FRONT OF THE CALL...
//NMS-REMOVAL init_namespace();// Do you need it? May be you want to use the same namespace
prog = p_buf;
scan_labels(); /* find the labels in the program */
ftos = 0; /* initialize the FOR stack index */
gtos = 0; /* initialize the GOSUB stack index */
do {
bas_token_type = get_token();
// printf("ttype=%d bas_tok=%d <%s>\n", bas_token_type, bas_tok, bas_token);
/* check for assignment statement */
if(bas_token_type==VARIABLE) {
putback(); /* return the var to the input stream */
assignment(); /* must be assignment statement */
}
else /* is command */
switch(bas_tok) {
case PRINT:
print();
break;
case GOTO:
exec_goto();
break;
case IF:
exec_if();
break;
case FOR:
exec_for();
break;
case NEXT:
next();
break;
case INPUT:
input();
break;
case GOSUB:
gosub();
break;
case RETURN:
greturn();
break;
case COMMENT:
do{
get_token();
if(bas_tok==EOL || bas_tok==FINISHED) break;
} while (1==1);
break;
case CONTINUE:
do{
get_token();
if(bas_tok==EOL || bas_tok==FINISHED) break;
} while (1==1);
break;
case END:
printf("variables----------------------------%s\n","");
for (i=0;i<varnamelast;i++){
printf("%14s - %19.7f\n", varname[i] , variables[i] );
}
exit(0);
}
} while (bas_tok != FINISHED);
return 0;
}// run_program
/************/
/* M A I N */
/************/
int qmain(int argc, char* argv[]){
// char in[80];
// int answer;
char *p_buf;
// char *t;
if(argc!=2) {
printf("usage: run <filename>\n");
exit(1);
}
/* allocate memory for the program */
if(!(p_buf=(char *) malloc(PROG_SIZE))) {
printf("allocation failure");
exit(1);
}
/* load the program to execute */
if(!load_program(p_buf,argv[1])) exit(1);
// serror can return here and die
if(setjmp(e_buf)) exit(1); /* initialize the long jump buffer */
init_namespace();
run_program(p_buf);// THIS RUNS THE PROGRAM
/* run_program("print \"THIS IS END\"\n");// THIS RUNS THE PROGRAM
run_program("print 1+2+3+4+5");// THIS RUNS THE PROGRAM
run_program("print 1.01+2.02+3.03+4.04+5.05");// THIS RUNS THE PROGRAM
run_program("print \"THIS IS END\"\n");// THIS RUNS THE PROGRAM
*/
return 0;
}//MAIN-------------------------------
/* Load a program. */
int load_program(char* p, char* fname){
//char *p;
//char *fname;
//{
FILE *fp;
int i=0;
if(!(fp=fopen(fname, "rb"))) return 0;
i = 0;
do {
*p = getc(fp);
p++; i++;
} while(!feof(fp) && i<PROG_SIZE);
*(p-1) = '\0'; /* null terminate the program */
fclose(fp);
return 1;
}//-------------------load
/***************************************************
*
* find a value of a variable:
* do not used in basic
*/
int lookup_table_tk(const char* token){
int position=-1;
int i;
for (i=0;i<varnamelast;i++){
if ( !strcmp(varname[i],token) ){ break; }
if ( i+1>=MAXVARIABLES ){ break; } //save your ass and pileup the 100s variable
}
// printf("%s broke at pos. %d \n", token, i );
if (i>=varnamelast){
// DEBUG PRINTF:
// printf("defining a new variable <%s> at pos %d\n", token, varnamelast );
strncpy( varname[ varnamelast ], token, 12 );// TAKE 1st 12 CHARACTERS FOR NAME
varnamelast++;
position=i;
}else{// ALREADY EXISTS, FOUND
position=i;
}
return position; // position in variables[126]
}//variable lookup ---- easy way
/*********************************
* lookup_table (s) enables to pick a variable from/to a namespace
* lookup_table2(s) enables to interpret a simple expression
* NOT to be used in basic.....
*/
/************************************************
* this must not be used inside the basic - this is
* only interpolation of the variable
* OR
* solving a formula
*
* Look up a a bas_token's internal representation in the
bas_token table.
*
* HO HO HO. What if s is formula? with *+-/
*
*
*/
double lookup_table2(char* s){
// register int i,j;
int i;
/*
* solve a formula or just call lookup_table( s )
*/
// printf("...........%s..............\n", s );
if ( (strpbrk( s , "+" )!=NULL)||
(strpbrk( s , "-" )!=NULL)||
(strpbrk( s , "*" )!=NULL)||
(strpbrk( s , "/" )!=NULL)
){
// printf("............. found a formula\n%s","");
double value;
prog=s;
bas_token_type = get_token(); putback();
get_exp(&value);
// printf("toktyp=%d, value = %lf\n",bas_token_type, value );
return value;
}// expr
else{ // standard lookup_table( s )
int io=lookup_table_tk(s);
// printf("............. NOT a formula, the var sits at pos %d\n", io );
return variables[io];
}
return 0.0; /* unknown command */
}//------------------------lookup_table 2
int lookup_table(){
int position=-1;
int i;
// if ( strlen(bas_token)==1 ){ return toupper(*bas_token)-'A'; } // all 26 default a..z
// multicharacter variables names
for (i=0;i<varnamelast;i++){
if ( !strcmp(varname[i],bas_token) ){ break; }
if ( i+1>=MAXVARIABLES ){ break; } //save your ass and pileup the 100s variable
}
// printf("%s broke at pos. %d \n", bas_token, i );
if (i>=varnamelast){
// DEBUG PRINTF:
// printf("defining a new variable <%s> at pos %d\n", bas_token, varnamelast );
strncpy( varname[ varnamelast ], bas_token, 12 );// TAKE 1st 12 CHARACTERS FOR NAME
varnamelast++;
position=i;
}else{// ALREADY EXISTS, FOUND
position=i;
}
// return position+26; // position in variables[126]
return position; // position in variables[126]
}//variable lookup
/* Assign a variable a value. */
int assignment(){
int var; double value;
/* get the variable name */
get_token();
// printf("new assignement <%s>\n", bas_token );
if(!isalpha(*bas_token)) {
serror(4);
return 0;
}
/*
* howto make a table of variables?
*/
var = lookup_table();// toupper(*bas_token)-'A';
// printf("assign <%s> retvar=%d ", bas_token, var );
/* get the equals sign */
get_token();
// printf(" <%s> ", bas_token );
if(*bas_token!='=') {
// printf("assignment%s\n","");
serror(3);
return 0;
}
/* get the value to assign to var */
// printf(" going to get_exp with bas_token <%s> \n ", bas_token );
get_exp(&value);
// printf(" = <%lf> (outcome)\n ", value );
/* assign the value */
variables[var] = value;
// printf("#<%d> val=<%lf>\n", var, value );
return 0; // ?????
}//--------------------------assignment
/* Execute a simple version of the BASIC PRINT statement */
void print()
{
double answer;
int len=0, spaces;
char last_delim; // warning from compile-may be used uninited
// I TRY TO MAKE PUT SOME VALUE FOR COMPILETIME
last_delim = *bas_token;
do {
get_token(); /* get next list item */
if(bas_tok==EOL || bas_tok==FINISHED) break;
if(bas_token_type==QUOTE) { /* is string */
printf("%s\n",bas_token);
len += strlen(bas_token);
get_token();
}
else { /* is expression */
putback();
get_exp(&answer);
get_token();
len += printf("%g", answer);
}
last_delim = *bas_token;
if(*bas_token==';') {
/* compute number of spaces to move to next tab */
spaces = 8 - (len % 8);
len += spaces; /* add in the tabbing position */
while(spaces) {
printf(" ");
spaces--;
}
}
else if(*bas_token==',') /* do nothing */;
else if(bas_tok!=EOL && bas_tok!=FINISHED) serror(0);
} while (*bas_token==';' || *bas_token==',');
if(bas_tok==EOL || bas_tok==FINISHED) {
if(last_delim != ';' && last_delim!=',') printf("\n");
}
else serror(0); /* error is not , or ; */
// return 0;
}//print--------------------------------------------
/* Find all labels. */
void scan_labels()
{
int addr;
char *temp;
label_init(); /* zero all labels */
temp = prog; /* save pointer to top of program */
/* if the first bas_token in the file is a label */
get_token();
if(bas_token_type==NUMBER) {
strcpy(label_table[0].name,bas_token);
label_table[0].p=prog;
}
find_eol();
do {
get_token();
if(bas_token_type==NUMBER) {
addr = get_next_label(bas_token);
if(addr==-1 || addr==-2) {
(addr==-1) ?serror(5):serror(6);
}
strcpy(label_table[addr].name, bas_token);
label_table[addr].p = prog; /* current point in program */
}
/* if not on a blank line, find next line */
if(bas_tok!=EOL) find_eol();
} while(bas_tok!=FINISHED);
prog = temp; /* restore to original */
}
/* Find the start of the next line. */
void find_eol()
{
while(*prog!='\n' && *prog!='\0') ++prog;
if(*prog) prog++;
}
/* Return index of next free position in label array.
A -1 is returned if the array is full.
A -2 is returned when duplicate label is found.
*/
int get_next_label(char* s){
int t;
for(t=0;t<NUM_LAB;++t) {
if(label_table[t].name[0]==0) return t;
if(!strcmp(label_table[t].name,s)) return -2; /* dup */
}
return -1;
}
/* Find location of given label. A null is returned if
label is not found; otherwise a pointer to the position
of the label is returned.
*/
char *find_label(char* s)
{
int t;
for(t=0; t<NUM_LAB; ++t)
if(!strcmp(label_table[t].name,s)) return label_table[t].p;
char ret[2]="\0";
// ----- i tried to return \0 but i needed to allocate \0.
//char *StrResult = malloc( 0 + 2 );
char *StrResult = new char[2];
StrResult[0]='\0';
return StrResult;
//return ret;
//return NULL;
// *return '\0'; /* error condition */
}
/* Execute a GOTO statement. */
void exec_goto()
{
char *loc;
get_token(); /* get label to go to */
/* find the location of the label */
loc = find_label(bas_token);
if(loc[0]=='\0')
serror(7); /* label not defined */
else prog=loc; /* start program running at that loc */
}
/* Initialize the array that holds the labels.
By convention, a null label name indicates that
array position is unused.
*/
void label_init()
{
int t;
for(t=0; t<NUM_LAB; ++t) label_table[t].name[0]='\0';
}
/* Execute an IF statement. */
void exec_if()
{
int cond;
double x;
// char op;
// printf("if:ini bas_token=%s \n", bas_token );
get_exp(&x); // get left expression
// ORIGINAL
/*
get_token(); // get the operator
if(!strchr("=<>", *bas_token)) {
serror(0); // not a legal operator
return;
}
op=*bas_token;
get_exp(&y); // get right expression
*/
// printf("if: bas_token=%s x=%4d \n", bas_token, x );
//NEUMIME =
cond = (int) x; //20100422
// cond=int(x); // expresion x gives 1 or 0
// determine the outcome
/* cond = 0;
switch(op) {
case '<':
if(x<y) cond=1;
break;
case '>':
if(x>y) cond=1;
break;
case '=':
if(x==y) cond=1;
break;
}
*/
if(cond) { /* is true so process target of IF */
get_token();
if(bas_tok!=THEN) {
serror(8);
return;
}/* else program execution starts on next line */
}
else find_eol(); /* find start of next line */
}
/* Execute a FOR loop. */
void exec_for()
{
struct for_stack i;
double value;
get_token(); /* read the control variable */
if(!isalpha(*bas_token)) {
serror(4);
return;
}
i.var=lookup_table();//toupper(*bas_token)-'A'; /* save its index */
get_token(); /* read the equals sign */
if(*bas_token!='=') {
serror(3);
return;
}
get_exp(&value); /* get initial value */
variables[i.var]=value;
get_token();
if(bas_tok!=TO) serror(9); /* read and discard the TO */
get_exp(&i.target); /* get target value */
/* if loop can execute at least once, push info on stack */
if(value>=variables[i.var]) {
i.loc = prog;
fpush( &i);// 20100422 - i
}
else /* otherwise, skip loop code altogether */
while(bas_tok!=NEXT) get_token();
}
/* Execute a NEXT statement. */
void next()
{
struct for_stack i;
i = fpop(); /* read the loop info */
variables[i.var]++; /* increment control variable */
if(variables[i.var]>i.target) return; /* all done */
fpush( &i ); /* otherwise, restore the info */
prog = i.loc; /* loop */
}
/* Push function for the FOR stack. */
/*
* 20100422 - fpush( for_stack i)
*/
void fpush(void * arg){
//struct for_stack i;
struct for_stack *i = (struct for_stack *) arg;
if(ftos>FOR_NEST)
serror(10);
fstack[ftos]=*i;// 20100422 - i
ftos++;
}
struct for_stack fpop()
{
ftos--;
if(ftos<0) serror(11);
return(fstack[ftos]);
}
/* Execute a simple form of the BASIC INPUT command */
void input()
{
int var;
double i;
get_token(); /* see if prompt string is present */
if(bas_token_type==QUOTE) {
printf("%s\n",bas_token); /* if so, print it and check for comma */
get_token();
if(*bas_token!=',') serror(1);
get_token();
}
else printf("? "); /* otherwise, prompt with / */
var = lookup_table();//toupper(*bas_token)-'A'; /* get the input var */
//HA - UNUSED INPUT!!
int shit=scanf("%lf", &i); /* read input */
printf( " %d :/\n", shit );
variables[var] = i; /* store it */
}//-----input
/* Execute a GOSUB command. */
void gosub()
{
char *loc;
char zeroc='\0';
get_token();
/* find the label to call */
loc = find_label(bas_token);
if( loc[0]=='\0')
serror(7); /* label not defined */
else {
gpush(prog); /* save place to return to */
prog = loc; /* start program running at that loc */
}
}
/* Return from GOSUB. */
void greturn()
{
prog = gpop();
}
/* GOSUB stack push function. */
void gpush(char* s){
gtos++;
if(gtos==SUB_NEST) {
serror(12);
return;
}
gstack[gtos]=s;
}
/* GOSUB stack pop function. */
char *gpop()
{
if(gtos==0) {
serror(13);
return 0;
}
return(gstack[gtos--]);
}
/* Entry point into parser. */
void get_exp(double* result){
get_token();
// printf("getexpparser: <%s> ...to level2 \n", bas_token );
if(!*bas_token) {
serror(2);
return;
}
level2(result);
// printf("Parser: res=<%lf> \n", result );
putback(); /* return last bas_token read to input stream */
}