home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / include / util / chars.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-22  |  1.5 KB  |  51 lines

  1. /**********************************************************************/
  2. /*                                                                    */
  3. /*             FILENAME:  chars.h                                     */
  4. /*             BY:  Jonathan G. Fiscus                                */
  5. /*                  NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY    */
  6. /*                  SPEECH RECOGNITION GROUP                          */
  7. /*                                                                    */
  8. /*           DESC:  This file contains general character defines      */
  9. /*                                                                    */
  10. /**********************************************************************/
  11. #define CHARS_H_VERSION "V1.0"
  12.  
  13. #define HYPHEN            '-'
  14. #define UND_SCR            '_'
  15. #define NEWLINE            '\n'
  16. #define NULL_CHAR        '\0'
  17. #define SPACE            ' '
  18. #define TAB            '\t'
  19. #define LEFT_PAREN        '('
  20. #define RIGHT_PAREN        ')'
  21. #define ASTERISK        '*'
  22. #define PERIOD            '.'
  23. #define SLASH            '/'
  24. #define SEMI_COLON        ';'
  25. #define DOUBLE_QUOTE        '"'
  26. #define EQUALS            '='
  27.  
  28. #define COMMENT_CHAR        SEMI_COLON
  29. #define COMMENT_INFO_CHAR    ASTERISK
  30.  
  31. #define TRUE            1
  32. #define FALSE            0
  33.  
  34. #define MAX_BUFF_LEN        1024
  35.  
  36. #define FULL_SCREEN        132
  37. #define SCREEN_WIDTH        79
  38.  
  39. #define FPNULL            ((FILE *) NULL)
  40. #define CNULL            ((char *) NULL)
  41. #define INULL            ((int *) NULL)
  42. #define LNULL            ((long *) NULL)
  43.  
  44. /* set this to 1 if PCIND_T is a short */
  45. #define PCIND_SHORT 0
  46.  
  47.  
  48. #ifdef PEDANTIC
  49. #include <util/proto.h>
  50. #endif
  51.