home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
textmstr.shr
/
tm.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-26
|
830b
|
17 lines
/***************************************************************************
** **
** Special defines for TextMaster **
** **
***************************************************************************/
/* What #include file does your system use for strings? */
#include <string.h> /* OK for most SysV machines */
/* #include <strings.h> /* OK for most BSD machines */
/* #include <whatever.h> /* If none of above, find it! */
/* Defines for the charcters we'll be converting */
#define UNIX_EOL '\n' /* UNIX end-of-line character */
#define MAC_EOL 0x0d /* Mac end-of-line character */
/* That's it! */