home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / unix / textmstr.shr / tm.h < prev    next >
C/C++ Source or Header  |  1991-06-26  |  830b  |  17 lines

  1. /***************************************************************************
  2.  **                                                                       **
  3.  **                   Special defines for TextMaster                      **
  4.  **                                                                       **
  5.  ***************************************************************************/
  6.  
  7. /* What #include file does your system use for strings? */
  8. #include    <string.h>        /* OK for most SysV machines */
  9. /* #include    <strings.h>        /* OK for most BSD machines */
  10. /* #include    <whatever.h>        /* If none of above, find it! */
  11.  
  12. /* Defines for the charcters we'll be converting */
  13. #define         UNIX_EOL        '\n'    /* UNIX end-of-line character */
  14. #define         MAC_EOL         0x0d    /* Mac end-of-line character */
  15.  
  16. /* That's it! */
  17.