home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c050 / 5.ddi / STDIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  6.7 KB  |  187 lines

  1. /*      stdio.h
  2.  
  3.         Definitions for stream input/output.
  4.  
  5.         Copyright (c) Borland International 1987,1988
  6.         All Rights Reserved.
  7. */
  8. #if __STDC__
  9. #define _Cdecl
  10. #else
  11. #define _Cdecl  cdecl
  12. #endif
  13.  
  14. #if     !defined(__STDIO_DEF_)
  15. #define __STDIO_DEF_
  16.  
  17. #ifndef _SIZE_T
  18. #define _SIZE_T
  19. typedef unsigned size_t;
  20. #endif
  21. #ifndef NULL
  22. #   if defined(__TINY__) || defined(__SMALL__) || defined(__MEDIUM__)
  23. #   define      NULL    0
  24. #   else
  25. #   define      NULL    0L
  26. #   endif
  27. #endif
  28.  
  29. #if     !defined(__STDARG)
  30. #include        <stdarg.h>
  31. #endif
  32.  
  33. /* Definition of the file position type
  34. */
  35. typedef long    fpos_t;
  36.  
  37. /* Definition of the control structure for streams
  38. */
  39. typedef struct  {
  40.         short           level;          /* fill/empty level of buffer */
  41.         unsigned        flags;          /* File status flags    */
  42.         char            fd;             /* File descriptor      */
  43.         unsigned char   hold;           /* Ungetc char if no buffer */
  44.         short           bsize;          /* Buffer size          */
  45.         unsigned char   *buffer;        /* Data transfer buffer */
  46.         unsigned char   *curp;          /* Current active pointer */
  47.         unsigned        istemp;         /* Temporary file indicator */
  48.         short           token;          /* Used for validity checking */
  49. }       FILE;                           /* This is the FILE object */
  50.  
  51. /* Bufferisation type to be used as 3rd argument for "setvbuf" function
  52. */
  53. #define _IOFBF  0
  54. #define _IOLBF  1
  55. #define _IONBF  2
  56.  
  57. /*      "flags" bits definitions
  58. */
  59. #define _F_RDWR 0x0003                  /* Read/write flag      */
  60. #define _F_READ 0x0001                  /* Read only file       */
  61. #define _F_WRIT 0x0002                  /* Write only file      */
  62. #define _F_BUF  0x0004                  /* Malloc'ed Buffer data */
  63. #define _F_LBUF 0x0008                  /* line-buffered file   */
  64. #define _F_ERR  0x0010                  /* Error indicator      */
  65. #define _F_EOF  0x0020                  /* EOF indicator        */
  66. #define _F_BIN  0x0040                  /* Binary file indicator */
  67. #define _F_IN   0x0080                  /* Data is incoming     */
  68. #define _F_OUT  0x0100                  /* Data is outgoing     */
  69. #define _F_TERM 0x0200                  /* File is a terminal   */
  70.  
  71. /* End-of-file constant definition
  72. */
  73. #define EOF     (-1)                    /* End of file indicator */
  74.  
  75. /* Number of files that can be open simultaneously
  76. */
  77. #define OPEN_MAX 20                     /* Total of 20 open files */
  78. #define SYS_OPEN 20
  79.  
  80. /* Default buffer size use by "setbuf" function
  81. */
  82. #define BUFSIZ  512                     /* Buffer size for stdio */
  83.  
  84. /* Size of an arry large enough to hold a temporary file name string
  85. */
  86. #define L_ctermid       5               /* CON: plus null byte */
  87. #define L_tmpnam        13              /* tmpnam buffer size */
  88.  
  89. /* Constants to be used as 3rd argument for "fseek" function
  90. */
  91. #define SEEK_CUR        1
  92. #define SEEK_END        2
  93. #define SEEK_SET        0
  94.  
  95. /* Number of unique file names that shall be generated by "tmpnam" function
  96. */
  97. #define TMP_MAX         0xFFFF
  98.  
  99. /* Standard I/O predefined streams
  100. */
  101. extern  FILE    _Cdecl _streams[];
  102.  
  103. #define stdin   (&_streams[0])
  104. #define stdout  (&_streams[1])
  105. #define stderr  (&_streams[2])
  106. #define stdaux  (&_streams[3])
  107. #define stdprn  (&_streams[4])
  108.  
  109. void     _Cdecl clearerr (FILE *stream);
  110. int      _Cdecl fclose   (FILE *stream);
  111. int      _Cdecl fflush   (FILE *stream);
  112. int      _Cdecl fgetc    (FILE *stream);
  113. int      _Cdecl fgetpos  (FILE *stream, fpos_t *pos);
  114. char    *_Cdecl fgets    (char *s, int n, FILE *stream);
  115. FILE    *_Cdecl fopen    (const char *path, const char *mode);
  116. int      _Cdecl fprintf  (FILE *stream, const char *format, ...);
  117. int      _Cdecl fputc    (int c, FILE *stream);
  118. int      _Cdecl fputs    (const char *s, FILE *stream);
  119. size_t   _Cdecl fread    (void *ptr, size_t size, size_t n, FILE *stream);
  120. FILE    *_Cdecl freopen  (const char *path, const char *mode, 
  121.                           FILE *stream);
  122. int      _Cdecl fscanf   (FILE *stream, const char *format, ...);
  123. int      _Cdecl fseek    (FILE *stream, long offset, int whence);
  124. int      _Cdecl fsetpos  (FILE *stream, const fpos_t *pos);
  125. long     _Cdecl ftell    (FILE *stream);
  126. size_t   _Cdecl fwrite   (const void *ptr, size_t size, size_t n,
  127.                           FILE *stream);
  128. char    *_Cdecl gets     (char *s);
  129. void     _Cdecl perror   (const char *s);
  130. int      _Cdecl printf   (const char *format, ...);
  131. int      _Cdecl puts     (const char *s);
  132. int      _Cdecl rename   (const char *oldname, const char *newname);
  133. void     _Cdecl rewind   (FILE *stream);
  134. int      _Cdecl scanf    (const char *format, ...);
  135. void     _Cdecl setbuf   (FILE *stream, char *buf);
  136. int      _Cdecl setvbuf  (FILE *stream, char *buf, int type, size_t size);
  137. int      _Cdecl sprintf  (char *buffer, const char *format, ...);
  138. int      _Cdecl sscanf   (const char *buffer, const char *format, ...);
  139. char    *_Cdecl strerror (int errnum);
  140. FILE    *_Cdecl tmpfile  (void);
  141. char    *_Cdecl tmpnam   (char *s);
  142. int      _Cdecl ungetc   (int c, FILE *stream);
  143. int      _Cdecl vfprintf (FILE *stream, const char *format, va_list arglist);
  144. int      _Cdecl vfscanf  (FILE *stream, const char *format, va_list arglist);
  145. int      _Cdecl vprintf  (const char *format, va_list arglist);
  146. int      _Cdecl vscanf   (const char *format, va_list arglist);
  147. int      _Cdecl vsprintf (char *buffer, const char *format, va_list arglist);
  148. int      _Cdecl vsscanf  (const char *buffer, const char *format, va_list arglist);
  149.  
  150. #if !__STDC__
  151. int      _Cdecl fcloseall(void);
  152. FILE    *_Cdecl fdopen   (int handle, char *type);
  153. int      _Cdecl fgetchar (void);
  154. int      _Cdecl flushall (void);
  155. int      _Cdecl fputchar (int c);
  156. int      _Cdecl getw     (FILE *stream);
  157. int      _Cdecl putw     (int w, FILE *stream);
  158. char    *_Cdecl _strerror(const char *s);
  159. int      _Cdecl unlink   (const char *path);
  160.  
  161. #endif
  162.  
  163. int      _Cdecl _fgetc   (FILE *stream);             /* used by getc() macro */
  164. int      _Cdecl _fputc   (char c, FILE *stream);     /* used by putc() macro */
  165.  
  166. /*      The following macros provide for common functions */
  167.  
  168. #define ferror(f)       ((f)->flags & _F_ERR)
  169. #define feof(f)         ((f)->flags & _F_EOF)
  170. #define fileno(f)       ((f)->fd)
  171. #define remove(path)    unlink(path)
  172.  
  173. #define getc(f) \
  174.   ((--((f)->level) >= 0) ? (unsigned char)(++(f)->curp)[-1] : \
  175.     _fgetc (f))
  176. #define putc(c,f) \
  177.   ((++((f)->level) < 0) ? (unsigned char)((++(f)->curp)[-1]=(c)) : \
  178.     _fputc ((c),f))
  179.  
  180. #define getchar()  getc(stdin)
  181. #define putchar(c) putc((c), stdout)
  182.  
  183. #define ungetc(c,f)     ungetc((c),f)   /* traditionally a macro */
  184.  
  185. #endif
  186.  
  187.