00001 #include "stack-c.h"
00002 #include "sciprint.h"
00003
00004
00005
00006
00007
00008
00009 #define MAXCH 30
00010
00011 int intex15c(fname)
00012 char* fname;
00013 {
00014 static int minlhs=1, minrhs=0, maxlhs=1, maxrhs=0;
00015 char str[MAXCH];
00016 int strl=MAXCH;
00017
00018 CheckRhs(minrhs,maxrhs) ;
00019 CheckLhs(minlhs,maxlhs) ;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 ReadString("Mystr", &strl, str);
00030
00031 sciprint("Mystr= \"%s\", length %d \r\n", str, strl);
00032
00033
00034 LhsVar(1) = 0;
00035 return(0);
00036 }
00037