home *** CD-ROM | disk | FTP | other *** search
- /* --------------------------------------------*\
- | lingua.h (version 1.2) -- (C) SichemSoft 1993 |
- | Roghorst 160, 6708 KS Wageningen, Netherlands |
- | include for language independent applications |
- | author: Anneke Sicherer-Roetman, date: 930521 |
- \* --------------------------------------------*/
-
- #ifndef LINGUAH
- #define LINGUAH
-
- #define UIT_ENCRYPT 53
- #define TRUE 1
- #define FALSE 0
-
- #ifdef __MSDOS__
- #define readRA "rb+"
- #define writeRA "wb+"
- #define lf "\r\n"
- #define lfchk ('\r'+'\n')
- #else /* UNIX */
- #define readRA "r+"
- #define writeRA "w+"
- #define lf "\n"
- #define lfchk ('\n')
- #endif
-
- #endif
-