stdio.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== stdio.h ============================================================
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * Copyright (c) 1993 by Chris Provenzano, proven@mit.edu
  4.  * All rights reserved.
  5.  *
  6.  * This code is derived from software contributed to Berkeley by
  7.  * Chris Torek.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  * This product includes software developed by the University of
  20.  * California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  *
  37.  * from: @(#)stdio.h 5.17 (Berkeley) 6/3/91
  38.  * $Id$
  39.  */
  40. #ifndef _STDIO_H_
  41. #define _STDIO_H_
  42. #include <sys/cdefs.h>
  43. #include <pthread/types.h>
  44. #include <pthread/posix.h>
  45. #include <sys/__stdio.h>
  46. #ifndef NULL
  47. #define NULL 0
  48. #endif
  49. #define _FSTDIO /* Define for new stdio with functions. */
  50. /*
  51.  * NB: to fit things in six character monocase externals, the stdio
  52.  * code uses the prefix `__s' for stdio objects, typically followed
  53.  * by a three-character attempt at a mnemonic.
  54.  */
  55. /* stdio buffers */
  56. struct __sbuf {
  57. unsigned char *_base;
  58. int _size;
  59. };
  60. /*
  61.  * stdio state variables.
  62.  *
  63.  * The following always hold:
  64.  *
  65.  * if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
  66.  * _lbfsize is -_bf._size, else _lbfsize is 0
  67.  * if _flags&__SRD, _w is 0
  68.  * if _flags&__SWR, _r is 0
  69.  *
  70.  * This ensures that the getc and putc macros (or inline functions) never
  71.  * try to write or read from a file that is in `read' or `write' mode.
  72.  * (Moreover, they can, and do, automatically switch from read mode to
  73.  * write mode, and back, on "r+" and "w+" files.)
  74.  *
  75.  * _lbfsize is used only to make the inline line-buffered output stream
  76.  * code as compact as possible.
  77.  *
  78.  * _ub, _up, and _ur are used when ungetc() pushes back more characters
  79.  * than fit in the current _bf, or when ungetc() pushes back a character
  80.  * that does not match the previous one in _bf.  When this happens,
  81.  * _ub._base becomes non-nil (i.e., a stream has ungetc() data iff
  82.  * _ub._base!=NULL) and _up and _ur save the current values of _p and _r.
  83.  */
  84. typedef struct __sFILE {
  85. unsigned char  *_p; /* current position in (some) buffer */
  86. int _r; /* read space left for getc() */
  87. int _w; /* write space left for putc() */
  88. short _flags; /* flags, below; this FILE is free if 0 */
  89. short _file; /* fileno, if Unix descriptor, else -1 */
  90. struct __sbuf  _bf; /* the buffer (at least 1 byte, if !NULL) */
  91. int _lbfsize; /* 0 or -_bf._size, for inline putc */
  92. /* separate buffer for long sequences of ungetc() */
  93. struct __sbuf  _ub; /* ungetc buffer */
  94. unsigned char  *_up; /* saved _p when _p is doing ungetc data */
  95. int _ur; /* saved _r when _r is counting ungetc data */
  96. /* tricks to meet minimum requirements even when malloc() fails */
  97. unsigned char  _ubuf[3]; /* guarantee an ungetc() buffer */
  98. unsigned char  _nbuf[1]; /* guarantee a getc() buffer */
  99. /* separate buffer for fgetline() when line crosses buffer boundary */
  100. struct __sbuf  _lb; /* buffer for fgetline() */
  101. /* Unix stdio files get aligned to block boundaries on fseek() */
  102. int _blksize; /* stat.st_blksize (may be != _bf._size) */
  103. int _offset; /* current lseek offset */
  104. } FILE;
  105. __BEGIN_DECLS
  106. extern FILE __sF[];
  107. __END_DECLS
  108. #define __SLBF 0x0001 /* line buffered */
  109. #define __SNBF 0x0002 /* unbuffered */
  110. #define __SRD 0x0004 /* OK to read */
  111. #define __SWR 0x0008 /* OK to write */
  112. /* RD and WR are never simultaneously asserted */
  113. #define __SRW 0x0010 /* open for reading & writing */
  114. #define __SEOF 0x0020 /* found EOF */
  115. #define __SERR 0x0040 /* found error */
  116. #define __SMBF 0x0080 /* _buf is from malloc */
  117. #define __SAPP 0x0100 /* fdopen()ed in append mode */
  118. #define __SSTR 0x0200 /* this is an sprintf/snprintf string */
  119. #define __SOPT 0x0400 /* do fseek() optimisation */
  120. #define __SNPT 0x0800 /* do not do fseek() optimisation */
  121. #define __SOFF 0x1000 /* set iff _offset is in fact correct */
  122. #define __SMOD 0x2000 /* true => fgetline modified _p text */
  123. /*
  124.  * The following three definitions are for ANSI C, which took them
  125.  * from System V, which brilliantly took internal interface macros and
  126.  * made them official arguments to setvbuf(), without renaming them.
  127.  * Hence, these ugly _IOxxx names are *supposed* to appear in user code.
  128.  *
  129.  * Although numbered as their counterparts above, the implementation
  130.  * does not rely on this.
  131.  */
  132. #define _IOFBF 0 /* setvbuf should set fully buffered */
  133. #define _IOLBF 1 /* setvbuf should set line buffered */
  134. #define _IONBF 2 /* setvbuf should set unbuffered */
  135. #define BUFSIZ 1024 /* size of buffer used by setbuf */
  136. #define EOF (-1)
  137. /*
  138.  * FOPEN_MAX is a minimum maximum, and should be the number of descriptors
  139.  * that the kernel can provide without allocation of a resource that can
  140.  * fail without the process sleeping.  Do not use this for anything.
  141.  */
  142. #define FOPEN_MAX 20 /* must be <= OPEN_MAX <sys/syslimits.h> */
  143. #define FILENAME_MAX 1024 /* must be <= PATH_MAX <sys/syslimits.h> */
  144. /* System V/ANSI C; this is the wrong way to do this, do *not* use these. */
  145. #ifndef _ANSI_SOURCE
  146. #define P_tmpdir "/var/tmp/"
  147. #endif
  148. #define L_tmpnam 1024 /* XXX must be == PATH_MAX */
  149. #ifndef TMP_MAX
  150. #define TMP_MAX 308915776
  151. #endif
  152. #ifndef SEEK_SET
  153. #define SEEK_SET 0 /* set file offset to offset */
  154. #endif
  155. #ifndef SEEK_CUR
  156. #define SEEK_CUR 1 /* set file offset to current plus offset */
  157. #endif
  158. #ifndef SEEK_END
  159. #define SEEK_END 2 /* set file offset to EOF plus offset */
  160. #endif
  161. #define stdin (&__sF[0])
  162. #define stdout (&__sF[1])
  163. #define stderr (&__sF[2])
  164. /*
  165.  * Functions defined in ANSI C standard.
  166.  */
  167. __BEGIN_DECLS
  168. void clearerr  __P_((FILE *));
  169. int   fclose  __P_((FILE *));
  170. int   feof  __P_((FILE *));
  171. int   ferror  __P_((FILE *));
  172. int   fflush  __P_((FILE *));
  173. int   fgetc  __P_((FILE *));
  174. int   fgetpos  __P_((FILE *, fpos_t *));
  175. char  * fgets  __P_((char *, size_t, FILE *));
  176. FILE  * fopen  __P_((const char *, const char *));
  177. int   fprintf  __P_((FILE *, const char *, ...));
  178. int   fputc  __P_((int, FILE *));
  179. int   fputs  __P_((const char *, FILE *));
  180. size_t fread  __P_((void *, size_t, size_t, FILE *));
  181. FILE  * freopen  __P_((const char *, const char *, FILE *));
  182. int   fscanf  __P_((FILE *, const char *, ...));
  183. int   fseek  __P_((FILE *, long, int));
  184. int   fsetpos  __P_((FILE *, const fpos_t *));
  185. long ftell  __P_((const FILE *));
  186. size_t fwrite  __P_((const void *, size_t, size_t, FILE *));
  187. int   getc  __P_((FILE *));
  188. int   getchar  __P_((void));
  189. char  * gets  __P_((char *));
  190. #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
  191. extern int sys_nerr; /* perror(3) external variables */
  192. /* Under NetBSD and BSD 4.4, at least, this is expected to be a const
  193.    array of pointers to const.  If you take `const' back out of this
  194.    declaration, please make it conditional on __NetBSD__ and bsd4_4.  */
  195. #ifdef HAVE_SYS_ERRLIST_WITHOUT_CONST
  196. extern char *sys_errlist[];
  197. #else
  198. extern const char *const sys_errlist[];
  199. #endif
  200. #endif
  201. void perror  __P_((const char *));
  202. int printf  __P_((const char *, ...));
  203. int putc  __P_((int, FILE *));
  204. int putchar __P_((int));
  205. int puts  __P_((const char *));
  206. int   remove  __P_((const char *));
  207. int   rename  __P_((const char *, const char *));
  208. void rewind  __P_((FILE *));
  209. int   scanf __P_((const char *, ...));
  210. void setbuf  __P_((FILE *, char *));
  211. int   setvbuf  __P_((FILE *, char *, int, size_t));
  212. int   sprintf  __P_((char *, const char *, ...));
  213. int   sscanf  __P_((const char *, const char *, ...));
  214. FILE  * tmpfile  __P_((void));
  215. char  * tmpnam  __P_((char *));
  216. int   ungetc  __P_((int, FILE *));
  217. int   vfprintf  __P_((FILE *, const char *, pthread_va_list));
  218. int   vprintf  __P_((const char *, pthread_va_list));
  219. int   vsprintf  __P_((char *, const char *, pthread_va_list));
  220. char *mprintf __P_((const char *, ...));
  221. char *vmprintf __P_((const char *, pthread_va_list));
  222. __END_DECLS
  223. /*
  224.  * Functions defined in POSIX 1003.1.
  225.  */
  226. #ifndef _ANSI_SOURCE
  227. #define L_ctermid 1024 /* size for ctermid(); PATH_MAX */
  228. #define L_cuserid 9 /* size for cuserid(); UT_NAMESIZE + 1 */
  229. __BEGIN_DECLS
  230. char  * ctermid __P_((char *));
  231. char  * cuserid __P_((char *));
  232. FILE  * fdopen __P_((int, const char *));
  233. int   fileno __P_((FILE *));
  234. __END_DECLS
  235. #endif /* not ANSI */
  236. /*
  237.  * Functions defined in POSIX 1003.4a. (1c)
  238.  */
  239. #ifndef _ANSI_SOURCE
  240. __BEGIN_DECLS
  241. void flockfile __P_((FILE *));
  242. void funlockfile __P_((FILE *));
  243. int ftrylockfile __P_((FILE *));
  244. __END_DECLS
  245. #endif /* not ANSI */
  246. /*
  247.  * Routines that are purely local.
  248.  */
  249. #if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
  250. __BEGIN_DECLS
  251. char *fgetline __P_((FILE *, size_t *));
  252. int  fpurge __P_((FILE *));
  253. int  getw __P_((FILE *));
  254. int  pclose __P_((FILE *));
  255. FILE *popen __P_((const char *, const char *));
  256. int  putw __P_((int, FILE *));
  257. void  setbuffer __P_((FILE *, char *, int));
  258. int  setlinebuf __P_((FILE *));
  259. char *tempnam __P_((const char *, const char *));
  260. int  snprintf __P_((char *, size_t, const char *, ...));
  261. int  vsnprintf __P_((char *, size_t, const char *, pthread_va_list));
  262. int  vscanf __P_((const char *, pthread_va_list));
  263. int  vsscanf __P_((const char *, const char *, pthread_va_list));
  264. __END_DECLS
  265. /*
  266.  * This is a #define because the function is used internally and
  267.  * (unlike vfscanf) the name __svfscanf is guaranteed not to collide
  268.  * with a user function when _ANSI_SOURCE or _POSIX_SOURCE is defined.
  269.  */
  270. #define  vfscanf __svfscanf
  271. /*
  272.  * Stdio function-access interface.
  273.  */
  274. __BEGIN_DECLS
  275. FILE *funopen __P_((const void *,
  276. int (*)(void *, char *, int),
  277. int (*)(void *, const char *, int),
  278. fpos_t (*)(void *, fpos_t, int),
  279. int (*)(void *)));
  280. __END_DECLS
  281. #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
  282. #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  283. #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
  284. /*
  285.  * Functions internal to the implementation.
  286.  */
  287. __BEGIN_DECLS
  288. int __srget __P_((FILE *));
  289. int __svfscanf __P_((FILE *, const char *, pthread_va_list));
  290. int __swbuf __P_((int, FILE *));
  291. __END_DECLS
  292. /*
  293.  * The __sfoo macros are here so that we can 
  294.  * define function versions in the C library.
  295.  */
  296. #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
  297. __BEGIN_DECLS
  298. int  __getc  __P_((FILE *));
  299. __END_DECLS
  300. #define getc(fp) __getc(fp)
  301. #define getchar() getc(stdin)
  302. #define getc_unlocked(fp) __sgetc(fp)
  303. #define getchar_unlocked() getc_unlocked(stdin)
  304. #ifdef __CAN_DO_EXTERN_INLINE
  305. __INLINE int __sputc(int _c, FILE *_p)
  306. {
  307. if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != 'n'))
  308. return (*_p->_p++ = _c);
  309. else
  310. return (__swbuf(_c, _p));
  311. }
  312. #else
  313. __BEGIN_DECLS
  314. int  __sputc  __P_((int, FILE *));
  315. __END_DECLS
  316. #endif
  317. __BEGIN_DECLS
  318. int  __putc  __P_((int, FILE *));
  319. __END_DECLS
  320. #define putc(x, fp) __putc(x, fp)
  321. #define putchar(x) putc(x, stdout)
  322. #define putc_unlocked(x, fp) __sputc(x, fp)
  323. #define putchar_unlocked(x) putc_unlocked(x, stdout)
  324. #define __sfeof(p) (((p)->_flags & __SEOF) != 0)
  325. #define __sferror(p) (((p)->_flags & __SERR) != 0)
  326. #define __sfileno(p) ((p)->_file)
  327. #define feof(p) __sfeof(p)
  328. #define ferror(p) __sferror(p)
  329. #ifndef _ANSI_SOURCE
  330. #define fileno(p) __sfileno(p)
  331. #endif
  332. #endif