how to parse from command line arguements in yacc ?

Posted by user205688 on Stack Overflow See other posts from Stack Overflow or by user205688
Published on 2010-04-14T11:59:17Z Indexed on 2010/04/14 12:03 UTC
Read the original article Hit count: 236

Filed under:
|

how to parse from command line arguements in yacc ?

of course i undefined input in both lex & yacc and then wrote

int input(void)
{
printf("in input\n:");
char c;
if(target >  limit)
return 0;
if((c = target[0][offset++]) != '\0')
return (c);
target++;
offset =0;
return (' ');
}

where target contains the command line arguements. But only the standard input is getting excueted how to make dis input function get executed.

© Stack Overflow or respective owner

Related posts about lex

Related posts about yacc