home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / FC20C.ZIP / STDIO.H < prev    next >
C/C++ Source or Header  |  1990-08-20  |  569b  |  21 lines

  1. /*
  2.  * MICRO-C standard I/O definitions for MS-DOS
  3.  *
  4.  * Copyright 1988,1990 Dave Dunfield
  5.  * All rights reserved.
  6.  */
  7.  
  8. #define    FILE     unsigned    /* FILE = 16 bit value */
  9. #define    EOF        -1            /* End of file indicator */
  10. #define    NULL    0            /* General NULL indicator */
  11.  
  12. #define    stdin    0            /* Standard input stream */
  13. #define    stdout    1            /* Standard output stream */
  14. #define    stderr    2            /* Standard error stream */
  15.  
  16.     extern register printf(), fprintf(), sprintf(),
  17.                     scanf(), fscanf(), sscanf(),
  18.                     concat();
  19.     extern char        *fgets();
  20.     extern FILE        *fopen();
  21.