home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / CMTEX330 / SOURCE / CHR.H < prev    next >
Text File  |  1992-02-19  |  494b  |  31 lines

  1.  
  2. /*
  3.  * %Y%:%M%:%I%:%Q%
  4.  *
  5.  * Copyright 1987,1988,1991 Pat J Monardo
  6.  *
  7.  * Redistribution of this file is permitted through
  8.  * the specifications in the file COPYING.
  9.  *
  10.  *
  11.  */
  12.  
  13. global    byte    xord[];
  14.  
  15. #define FIRST_ASCII_CODE    0
  16. #define LAST_ASCII_CODE        255
  17.  
  18. global    byte    xchr[];
  19.  
  20. #define FIRST_TEXT_CHAR        0
  21. #define LAST_TEXT_CHAR        255
  22.  
  23. #define TAB            011
  24. #define FORM_FEED        014
  25. #define CARRIAGE_RETURN        015
  26. #define NULL_CODE        000
  27. #define INVALID_CODE        0177
  28.  
  29. void    _chr_init();
  30. void    _chr_init_once();
  31.