home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / kpathsea / c-fopen.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  54 lines

  1. /* c-fopen.h: how to open files with fopen.
  2.  
  3. Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #ifndef C_FOPEN_H
  20. #define C_FOPEN_H
  21.  
  22. /* How to open a text file:  */
  23. #ifndef FOPEN_R_MODE
  24. #define FOPEN_R_MODE "r"
  25. #endif
  26.  
  27. #ifndef FOPEN_W_MODE
  28. #define FOPEN_W_MODE "w"
  29. #endif
  30.  
  31. /* How to open a binary file for reading:  */
  32. #ifndef FOPEN_RBIN_MODE
  33. #if defined (VMS) || defined (DOS) || defined (VMCMS)
  34. #define    FOPEN_RBIN_MODE    "rb"
  35. #else
  36. #define    FOPEN_RBIN_MODE    "r"
  37. #endif /* not (VM/CMS or DOS or VMS) */
  38. #endif /* not FOPEN_RBIN_MODE */
  39.  
  40. /* How to open a binary file for writing:  */
  41. #ifndef FOPEN_WBIN_MODE
  42. #ifdef DOS
  43. #define FOPEN_WBIN_MODE "wb"
  44. #else
  45. #ifdef VMCMS
  46. #define FOPEN_WBIN_MODE "wb, lrecl=1024, recfm=f"
  47. #else
  48. #define    FOPEN_WBIN_MODE    "w"
  49. #endif /* not VM/CMS */
  50. #endif /* not DOS */
  51. #endif /* not FOPEN_WBIN_MODE */
  52.  
  53. #endif /* not C_FOPEN_H */
  54.