home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / STDIO.H < prev    next >
Text File  |  2000-06-30  |  512b  |  21 lines

  1. /*
  2. ** STDIO.H -- Standard Small-C Definitions
  3. **
  4. ** Copyright 1984 L. E. Payne and J. E. Hendrix
  5. **
  6. ** Keyed in from DDJ by Earl Boebert
  7. */
  8. #define stdin 0
  9. #define stdout  1
  10. #define stderr  2
  11. #define ERR (-2)
  12. #define EOF (-1)
  13. #define YES 1
  14. #define NO  0
  15. #define NULL  0
  16. #define CR  13
  17. #define LF  10
  18. #define BELL  7
  19. #define SPACE ' '
  20. #define NEWLINE CR  /*make consistent with Small C*/
  21.