I'm making a programming language converter and, and it has import and include.
For example:
import com.nanana.MyClassFile
include "myfile.any"
I'm newbie which means I'm lost in how can I make it. I wondering if is possible parse another file while one is been parsing.
And how can I do it?
EDIT:
The code I'm using to parse files in main function is:
yyin = fopen( argv[1], "r" );
return yyparse();
Can I use this same code, or there is another?