home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / croutes.zip / READC.C < prev    next >
Text File  |  1984-06-25  |  785b  |  17 lines

  1. /*                          *** readc.c ***                          */
  2. /*                                                                   */
  3. /* IBM-PC microsoft "C" under PC-DOS v2.0                            */
  4. /*                                                                   */
  5. /* Function to read a character to the screen using a DOS function.  */
  6. /*                                                                   */
  7. /* Written by L. Cuthbertson, March 1984.                            */
  8. /*                                                                   */
  9. /*********************************************************************/
  10. /*                                                                   */
  11. int readc()
  12. {
  13.     int bdos();
  14.  
  15.     return(bdos(8));
  16. }
  17.