home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / djdev108.zip / SAMPLES / HEXCALC / MAIN.C < prev    next >
C/C++ Source or Header  |  1991-09-02  |  157b  |  13 lines

  1. #include "hc.h"
  2.  
  3. main(int argc, char **argv)
  4. {
  5.   int i;
  6.   for (i=0; i<MAX_ID; i++)
  7.   {
  8.     id_name[i] = 0;
  9.     id_val[i] = 0;
  10.   }
  11.   yyparse();
  12. }
  13.