home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / m / makedrawf / Source / c / test < prev   
Encoding:
Text File  |  1995-05-12  |  345 b   |  23 lines

  1. /* Test harness for the mouth of mkdrawf3
  2.  * Make sure mouth.c was compiled with -DDEBUG_TOKENS
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. #include "mkdrawf.h"
  8.  
  9. char *name();
  10.  
  11. int font_number(const char *s) {
  12.   return 123;
  13. }
  14.  
  15. int main(void) {
  16.   init_global_hash();
  17.   input_file_name="stdin";
  18.   input_file=stdin;
  19.   while (1) {
  20.     if (get_x_token(0)) break;
  21.   }
  22. }
  23.