B
Bill Cunningham
In comp.programming I asked for advice for writing a parser. The code
someone showed me wouldn't compile. I don't know what's wrong. I just want
to write the simpliest of parsers.
int parser(FILE *in,FILE *out);
int main(void){
parser(stdin,stdout);
return0;}
Won't compile. My guess is maybe this should be written
parser(&stdin,&stdout);
But that's my opinion.
Bill
someone showed me wouldn't compile. I don't know what's wrong. I just want
to write the simpliest of parsers.
int parser(FILE *in,FILE *out);
int main(void){
parser(stdin,stdout);
return0;}
Won't compile. My guess is maybe this should be written
parser(&stdin,&stdout);
But that's my opinion.
Bill