home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / LINGUA12.ZIP / LINGUA.H < prev    next >
C/C++ Source or Header  |  1993-05-21  |  668b  |  28 lines

  1. /* --------------------------------------------*\
  2. | lingua.h (version 1.2) -- (C) SichemSoft 1993 |
  3. | Roghorst 160, 6708 KS Wageningen, Netherlands |
  4. | include for language independent applications |
  5. | author: Anneke Sicherer-Roetman, date: 930521 |
  6. \* --------------------------------------------*/
  7.  
  8. #ifndef LINGUAH
  9. #define LINGUAH
  10.  
  11. #define UIT_ENCRYPT    53
  12. #define TRUE           1
  13. #define FALSE          0
  14.  
  15. #ifdef __MSDOS__
  16. #define readRA  "rb+"
  17. #define writeRA "wb+"
  18. #define lf      "\r\n"
  19. #define lfchk   ('\r'+'\n')
  20. #else /* UNIX */
  21. #define readRA  "r+"
  22. #define writeRA "w+"
  23. #define lf      "\n"
  24. #define lfchk   ('\n')
  25. #endif
  26.  
  27. #endif
  28.