#include <stdio.h>

extern int yydebug;
extern FILE *yyin, *yyout;

extern int MVL_LINNUM;


main(argc, argv)
int argc;
char** argv;
{
  char* infilename;

  /* missing parameter check */
    
  /* yydebug=1; */


  /* open files */
  /* input file */
  if (argc>1){
    infilename=(char*)malloc(sizeof(char)*strlen(argv[1])+1);
    strcpy(infilename, argv[1]);
    if ((yyin=fopen(argv[1],"r"))==NULL){
      yyerror("unable to open inputfile");
    }    
    argc--;
    argv++;
  }else{
    infilename=" ";
  }
  /* output file */
  if (argc>1){
    if ((yyout=fopen(argv[1],"w"))==NULL){
      yyerror("could not open outputfile\n");
    }
  }

  yyparse();


  exit(0);

}

<div align="center"><br /><script type="text/javascript"><!--
google_ad_client = "pub-7293844627074885";
//468x60, Created at 07. 11. 25
google_ad_slot = "8619794253";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />&nbsp;</div>