home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / prg / c / freedos3 / source / jh_utils / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-07  |  187 b   |  16 lines

  1. #include <stdio.h>
  2. #include "freedos.h"
  3.  
  4. main ()
  5. {
  6.   char sz[MAX_STR];
  7.  
  8.   /* Get a string */
  9.  
  10.   printf ("Enter a color name:");
  11.   gets (sz);
  12.  
  13.   printf ("%d\n", color (sz));
  14.   exit (0);
  15. }
  16.