libio.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1991-1995, 1997-2003, 2004 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    Written by Per Bothner <bothner@cygnus.com>.
  4.    The GNU C Library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Lesser General Public
  6.    License as published by the Free Software Foundation; either
  7.    version 2.1 of the License, or (at your option) any later version.
  8.    The GNU C Library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Lesser General Public License for more details.
  12.    You should have received a copy of the GNU Lesser General Public
  13.    License along with the GNU C Library; if not, write to the Free
  14.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15.    02111-1307 USA.
  16.    As a special exception, if you link the code in this file with
  17.    files compiled with a GNU compiler to produce an executable,
  18.    that does not cause the resulting executable to be covered by
  19.    the GNU Lesser General Public License.  This exception does not
  20.    however invalidate any other reasons why the executable file
  21.    might be covered by the GNU Lesser General Public License.
  22.    This exception applies to code released by its copyright holders
  23.    in files containing the exception.  */
  24. #ifndef _IO_STDIO_H
  25. #define _IO_STDIO_H
  26. #include <_G_config.h>
  27. /* ALL of these should be defined in _G_config.h */
  28. #define _IO_pos_t _G_fpos_t /* obsolete */
  29. #define _IO_fpos_t _G_fpos_t
  30. #define _IO_fpos64_t _G_fpos64_t
  31. #define _IO_size_t _G_size_t
  32. #define _IO_ssize_t _G_ssize_t
  33. #define _IO_off_t _G_off_t
  34. #define _IO_off64_t _G_off64_t
  35. #define _IO_pid_t _G_pid_t
  36. #define _IO_uid_t _G_uid_t
  37. #define _IO_iconv_t _G_iconv_t
  38. #define _IO_HAVE_SYS_WAIT _G_HAVE_SYS_WAIT
  39. #define _IO_HAVE_ST_BLKSIZE _G_HAVE_ST_BLKSIZE
  40. #define _IO_BUFSIZ _G_BUFSIZ
  41. #define _IO_va_list _G_va_list
  42. #define _IO_wint_t _G_wint_t
  43. #ifdef _G_NEED_STDARG_H
  44. /* This define avoids name pollution if we're using GNU stdarg.h */
  45. # define __need___va_list
  46. # include <stdarg.h>
  47. # ifdef __GNUC_VA_LIST
  48. #  undef _IO_va_list
  49. #  define _IO_va_list __gnuc_va_list
  50. # endif /* __GNUC_VA_LIST */
  51. #endif
  52. #ifndef __P
  53. # if _G_HAVE_SYS_CDEFS
  54. #  include <sys/cdefs.h>
  55. # else
  56. #  ifdef __STDC__
  57. #   define __P(p) p
  58. #   define __PMT(p) p
  59. #  else
  60. #   define __P(p) ()
  61. #   define __PMT(p) ()
  62. #  endif
  63. # endif
  64. #endif /*!__P*/
  65. /* For backward compatibility */
  66. #ifndef _PARAMS
  67. # define _PARAMS(protos) __P(protos)
  68. #endif /*!_PARAMS*/
  69. #ifndef __STDC__
  70. # ifndef const
  71. #  define const
  72. # endif
  73. #endif
  74. #define _IO_UNIFIED_JUMPTABLES 1
  75. #ifndef _G_HAVE_PRINTF_FP
  76. # define _IO_USE_DTOA 1
  77. #endif
  78. #ifndef EOF
  79. # define EOF (-1)
  80. #endif
  81. #ifndef NULL
  82. # if defined __GNUG__ && 
  83.     (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
  84. #  define NULL (__null)
  85. # else
  86. #  if !defined(__cplusplus)
  87. #   define NULL ((void*)0)
  88. #  else
  89. #   define NULL (0)
  90. #  endif
  91. # endif
  92. #endif
  93. #define _IOS_INPUT 1
  94. #define _IOS_OUTPUT 2
  95. #define _IOS_ATEND 4
  96. #define _IOS_APPEND 8
  97. #define _IOS_TRUNC 16
  98. #define _IOS_NOCREATE 32
  99. #define _IOS_NOREPLACE 64
  100. #define _IOS_BIN 128
  101. /* Magic numbers and bits for the _flags field.
  102.    The magic numbers use the high-order bits of _flags;
  103.    the remaining bits are available for variable flags.
  104.    Note: The magic numbers must all be negative if stdio
  105.    emulation is desired. */
  106. #define _IO_MAGIC 0xFBAD0000 /* Magic number */
  107. #define _OLD_STDIO_MAGIC 0xFABC0000 /* Emulate old stdio. */
  108. #define _IO_MAGIC_MASK 0xFFFF0000
  109. #define _IO_USER_BUF 1 /* User owns buffer; don't delete it on close. */
  110. #define _IO_UNBUFFERED 2
  111. #define _IO_NO_READS 4 /* Reading not allowed */
  112. #define _IO_NO_WRITES 8 /* Writing not allowd */
  113. #define _IO_EOF_SEEN 0x10
  114. #define _IO_ERR_SEEN 0x20
  115. #define _IO_DELETE_DONT_CLOSE 0x40 /* Don't call close(_fileno) on cleanup. */
  116. #define _IO_LINKED 0x80 /* Set if linked (using _chain) to streambuf::_list_all.*/
  117. #define _IO_IN_BACKUP 0x100
  118. #define _IO_LINE_BUF 0x200
  119. #define _IO_TIED_PUT_GET 0x400 /* Set if put and get pointer logicly tied. */
  120. #define _IO_CURRENTLY_PUTTING 0x800
  121. #define _IO_IS_APPENDING 0x1000
  122. #define _IO_IS_FILEBUF 0x2000
  123. #define _IO_BAD_SEEN 0x4000
  124. #define _IO_USER_LOCK 0x8000
  125. #define _IO_FLAGS2_MMAP 1
  126. #define _IO_FLAGS2_NOTCANCEL 2
  127. #ifdef _LIBC
  128. # define _IO_FLAGS2_FORTIFY 4
  129. #endif
  130. /* These are "formatting flags" matching the iostream fmtflags enum values. */
  131. #define _IO_SKIPWS 01
  132. #define _IO_LEFT 02
  133. #define _IO_RIGHT 04
  134. #define _IO_INTERNAL 010
  135. #define _IO_DEC 020
  136. #define _IO_OCT 040
  137. #define _IO_HEX 0100
  138. #define _IO_SHOWBASE 0200
  139. #define _IO_SHOWPOINT 0400
  140. #define _IO_UPPERCASE 01000
  141. #define _IO_SHOWPOS 02000
  142. #define _IO_SCIENTIFIC 04000
  143. #define _IO_FIXED 010000
  144. #define _IO_UNITBUF 020000
  145. #define _IO_STDIO 040000
  146. #define _IO_DONT_CLOSE 0100000
  147. #define _IO_BOOLALPHA 0200000
  148. struct _IO_jump_t;  struct _IO_FILE;
  149. /* Handle lock.  */
  150. #ifdef _IO_MTSAFE_IO
  151. # if defined __GLIBC__ && __GLIBC__ >= 2
  152. #  include <bits/stdio-lock.h>
  153. # else
  154. /*# include <comthread.h>*/
  155. # endif
  156. #else
  157. typedef void _IO_lock_t;
  158. #endif
  159. /* A streammarker remembers a position in a buffer. */
  160. struct _IO_marker {
  161.   struct _IO_marker *_next;
  162.   struct _IO_FILE *_sbuf;
  163.   /* If _pos >= 0
  164.  it points to _buf->Gbase()+_pos. FIXME comment */
  165.   /* if _pos < 0, it points to _buf->eBptr()+_pos. FIXME comment */
  166.   int _pos;
  167. #if 0
  168.     void set_streampos(streampos sp) { _spos = sp; }
  169.     void set_offset(int offset) { _pos = offset; _spos = (streampos)(-2); }
  170.   public:
  171.     streammarker(streambuf *sb);
  172.     ~streammarker();
  173.     int saving() { return  _spos == -2; }
  174.     int delta(streammarker&);
  175.     int delta();
  176. #endif
  177. };
  178. /* This is the structure from the libstdc++ codecvt class.  */
  179. enum __codecvt_result
  180. {
  181.   __codecvt_ok,
  182.   __codecvt_partial,
  183.   __codecvt_error,
  184.   __codecvt_noconv
  185. };
  186. #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
  187. /* The order of the elements in the following struct must match the order
  188.    of the virtual functions in the libstdc++ codecvt class.  */
  189. struct _IO_codecvt
  190. {
  191.   void (*__codecvt_destr) (struct _IO_codecvt *);
  192.   enum __codecvt_result (*__codecvt_do_out) (struct _IO_codecvt *,
  193.      __mbstate_t *,
  194.      const wchar_t *,
  195.      const wchar_t *,
  196.      const wchar_t **, char *,
  197.      char *, char **);
  198.   enum __codecvt_result (*__codecvt_do_unshift) (struct _IO_codecvt *,
  199.  __mbstate_t *, char *,
  200.  char *, char **);
  201.   enum __codecvt_result (*__codecvt_do_in) (struct _IO_codecvt *,
  202.     __mbstate_t *,
  203.     const char *, const char *,
  204.     const char **, wchar_t *,
  205.     wchar_t *, wchar_t **);
  206.   int (*__codecvt_do_encoding) (struct _IO_codecvt *);
  207.   int (*__codecvt_do_always_noconv) (struct _IO_codecvt *);
  208.   int (*__codecvt_do_length) (struct _IO_codecvt *, __mbstate_t *,
  209.       const char *, const char *, _IO_size_t);
  210.   int (*__codecvt_do_max_length) (struct _IO_codecvt *);
  211.   _IO_iconv_t __cd_in;
  212.   _IO_iconv_t __cd_out;
  213. };
  214. /* Extra data for wide character streams.  */
  215. struct _IO_wide_data
  216. {
  217.   wchar_t *_IO_read_ptr; /* Current read pointer */
  218.   wchar_t *_IO_read_end; /* End of get area. */
  219.   wchar_t *_IO_read_base; /* Start of putback+get area. */
  220.   wchar_t *_IO_write_base; /* Start of put area. */
  221.   wchar_t *_IO_write_ptr; /* Current put pointer. */
  222.   wchar_t *_IO_write_end; /* End of put area. */
  223.   wchar_t *_IO_buf_base; /* Start of reserve area. */
  224.   wchar_t *_IO_buf_end; /* End of reserve area. */
  225.   /* The following fields are used to support backing up and undo. */
  226.   wchar_t *_IO_save_base; /* Pointer to start of non-current get area. */
  227.   wchar_t *_IO_backup_base; /* Pointer to first valid character of
  228.    backup area */
  229.   wchar_t *_IO_save_end; /* Pointer to end of non-current get area. */
  230.   __mbstate_t _IO_state;
  231.   __mbstate_t _IO_last_state;
  232.   struct _IO_codecvt _codecvt;
  233.   wchar_t _shortbuf[1];
  234.   const struct _IO_jump_t *_wide_vtable;
  235. };
  236. #endif
  237. struct _IO_FILE {
  238.   int _flags; /* High-order word is _IO_MAGIC; rest is flags. */
  239. #define _IO_file_flags _flags
  240.   /* The following pointers correspond to the C++ streambuf protocol. */
  241.   /* Note:  Tk uses the _IO_read_ptr and _IO_read_end fields directly. */
  242.   char* _IO_read_ptr; /* Current read pointer */
  243.   char* _IO_read_end; /* End of get area. */
  244.   char* _IO_read_base; /* Start of putback+get area. */
  245.   char* _IO_write_base; /* Start of put area. */
  246.   char* _IO_write_ptr; /* Current put pointer. */
  247.   char* _IO_write_end; /* End of put area. */
  248.   char* _IO_buf_base; /* Start of reserve area. */
  249.   char* _IO_buf_end; /* End of reserve area. */
  250.   /* The following fields are used to support backing up and undo. */
  251.   char *_IO_save_base; /* Pointer to start of non-current get area. */
  252.   char *_IO_backup_base;  /* Pointer to first valid character of backup area */
  253.   char *_IO_save_end; /* Pointer to end of non-current get area. */
  254.   struct _IO_marker *_markers;
  255.   struct _IO_FILE *_chain;
  256.   int _fileno;
  257. #if 0
  258.   int _blksize;
  259. #else
  260.   int _flags2;
  261. #endif
  262.   _IO_off_t _old_offset; /* This used to be _offset but it's too small.  */
  263. #define __HAVE_COLUMN /* temporary */
  264.   /* 1+column number of pbase(); 0 is unknown. */
  265.   unsigned short _cur_column;
  266.   signed char _vtable_offset;
  267.   char _shortbuf[1];
  268.   /*  char* _save_gptr;  char* _save_egptr; */
  269.   _IO_lock_t *_lock;
  270. #ifdef _IO_USE_OLD_IO_FILE
  271. };
  272. struct _IO_FILE_complete
  273. {
  274.   struct _IO_FILE _file;
  275. #endif
  276. #if defined _G_IO_IO_FILE_VERSION && _G_IO_IO_FILE_VERSION == 0x20001
  277.   _IO_off64_t _offset;
  278. # if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
  279.   /* Wide character stream stuff.  */
  280.   struct _IO_codecvt *_codecvt;
  281.   struct _IO_wide_data *_wide_data;
  282. # else
  283.   void *__pad1;
  284.   void *__pad2;
  285. # endif
  286.   int _mode;
  287.   /* Make sure we don't get into trouble again.  */
  288.   char _unused2[15 * sizeof (int) - 2 * sizeof (void *)];
  289. #endif
  290. };
  291. #ifndef __cplusplus
  292. typedef struct _IO_FILE _IO_FILE;
  293. #endif
  294. struct _IO_FILE_plus;
  295. extern struct _IO_FILE_plus _IO_2_1_stdin_;
  296. extern struct _IO_FILE_plus _IO_2_1_stdout_;
  297. extern struct _IO_FILE_plus _IO_2_1_stderr_;
  298. #ifndef _LIBC
  299. #define _IO_stdin ((_IO_FILE*)(&_IO_2_1_stdin_))
  300. #define _IO_stdout ((_IO_FILE*)(&_IO_2_1_stdout_))
  301. #define _IO_stderr ((_IO_FILE*)(&_IO_2_1_stderr_))
  302. #else
  303. extern _IO_FILE *_IO_stdin attribute_hidden;
  304. extern _IO_FILE *_IO_stdout attribute_hidden;
  305. extern _IO_FILE *_IO_stderr attribute_hidden;
  306. #endif
  307. /* Functions to do I/O and file management for a stream.  */
  308. /* Read NBYTES bytes from COOKIE into a buffer pointed to by BUF.
  309.    Return number of bytes read.  */
  310. typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes);
  311. /* Write N bytes pointed to by BUF to COOKIE.  Write all N bytes
  312.    unless there is an error.  Return number of bytes written, or -1 if
  313.    there is an error without writing anything.  If the file has been
  314.    opened for append (__mode.__append set), then set the file pointer
  315.    to the end of the file and then do the write; if not, just write at
  316.    the current file pointer.  */
  317. typedef __ssize_t __io_write_fn (void *__cookie, __const char *__buf,
  318.  size_t __n);
  319. /* Move COOKIE's file position to *POS bytes from the
  320.    beginning of the file (if W is SEEK_SET),
  321.    the current position (if W is SEEK_CUR),
  322.    or the end of the file (if W is SEEK_END).
  323.    Set *POS to the new file position.
  324.    Returns zero if successful, nonzero if not.  */
  325. typedef int __io_seek_fn (void *__cookie, _IO_off64_t *__pos, int __w);
  326. /* Close COOKIE.  */
  327. typedef int __io_close_fn (void *__cookie);
  328. #ifdef _GNU_SOURCE
  329. /* User-visible names for the above.  */
  330. typedef __io_read_fn cookie_read_function_t;
  331. typedef __io_write_fn cookie_write_function_t;
  332. typedef __io_seek_fn cookie_seek_function_t;
  333. typedef __io_close_fn cookie_close_function_t;
  334. /* The structure with the cookie function pointers.  */
  335. typedef struct
  336. {
  337.   __io_read_fn *read; /* Read bytes.  */
  338.   __io_write_fn *write; /* Write bytes.  */
  339.   __io_seek_fn *seek; /* Seek/tell file position.  */
  340.   __io_close_fn *close; /* Close file.  */
  341. } _IO_cookie_io_functions_t;
  342. typedef _IO_cookie_io_functions_t cookie_io_functions_t;
  343. struct _IO_cookie_file;
  344. /* Initialize one of those.  */
  345. extern void _IO_cookie_init (struct _IO_cookie_file *__cfile, int __read_write,
  346.      void *__cookie, _IO_cookie_io_functions_t __fns);
  347. #endif
  348. #ifdef __cplusplus
  349. extern "C" {
  350. #endif
  351. extern int __underflow (_IO_FILE *) __THROW;
  352. extern int __uflow (_IO_FILE *) __THROW;
  353. extern int __overflow (_IO_FILE *, int) __THROW;
  354. extern _IO_wint_t __wunderflow (_IO_FILE *) __THROW;
  355. extern _IO_wint_t __wuflow (_IO_FILE *) __THROW;
  356. extern _IO_wint_t __woverflow (_IO_FILE *, _IO_wint_t) __THROW;
  357. #if  __GNUC__ >= 3
  358. # define _IO_BE(expr, res) __builtin_expect (expr, res)
  359. #else
  360. # define _IO_BE(expr, res) (expr)
  361. #endif
  362. #define _IO_getc_unlocked(_fp) 
  363.        (_IO_BE ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end, 0) 
  364. ? __uflow (_fp) : *(unsigned char *) (_fp)->_IO_read_ptr++)
  365. #define _IO_peekc_unlocked(_fp) 
  366.        (_IO_BE ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end, 0) 
  367.   && __underflow (_fp) == EOF ? EOF 
  368. : *(unsigned char *) (_fp)->_IO_read_ptr)
  369. #define _IO_putc_unlocked(_ch, _fp) 
  370.    (_IO_BE ((_fp)->_IO_write_ptr >= (_fp)->_IO_write_end, 0) 
  371.     ? __overflow (_fp, (unsigned char) (_ch)) 
  372.     : (unsigned char) (*(_fp)->_IO_write_ptr++ = (_ch)))
  373. #define _IO_getwc_unlocked(_fp) 
  374.   (_IO_BE ((_fp)->_wide_data->_IO_read_ptr >= (_fp)->_wide_data->_IO_read_end,
  375.    0) 
  376.    ? __wuflow (_fp) : (_IO_wint_t) *(_fp)->_wide_data->_IO_read_ptr++)
  377. #define _IO_putwc_unlocked(_wch, _fp) 
  378.   (_IO_BE ((_fp)->_wide_data->_IO_write_ptr 
  379.    >= (_fp)->_wide_data->_IO_write_end, 0) 
  380.    ? __woverflow (_fp, _wch) 
  381.    : (_IO_wint_t) (*(_fp)->_wide_data->_IO_write_ptr++ = (_wch)))
  382. #define _IO_feof_unlocked(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
  383. #define _IO_ferror_unlocked(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
  384. extern int _IO_getc (_IO_FILE *__fp) __THROW;
  385. extern int _IO_putc (int __c, _IO_FILE *__fp) __THROW;
  386. extern int _IO_feof (_IO_FILE *__fp) __THROW;
  387. extern int _IO_ferror (_IO_FILE *__fp) __THROW;
  388. extern int _IO_peekc_locked (_IO_FILE *__fp) __THROW;
  389. /* This one is for Emacs. */
  390. #define _IO_PENDING_OUTPUT_COUNT(_fp)
  391. ((_fp)->_IO_write_ptr - (_fp)->_IO_write_base)
  392. extern void _IO_flockfile (_IO_FILE *) __THROW;
  393. extern void _IO_funlockfile (_IO_FILE *) __THROW;
  394. extern int _IO_ftrylockfile (_IO_FILE *) __THROW;
  395. #ifdef _IO_MTSAFE_IO
  396. # define _IO_peekc(_fp) _IO_peekc_locked (_fp)
  397. # define _IO_flockfile(_fp) 
  398.   if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_flockfile (_fp)
  399. # define _IO_funlockfile(_fp) 
  400.   if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_funlockfile (_fp)
  401. #else
  402. # define _IO_peekc(_fp) _IO_peekc_unlocked (_fp)
  403. # define _IO_flockfile(_fp) /**/
  404. # define _IO_funlockfile(_fp) /**/
  405. # define _IO_ftrylockfile(_fp) /**/
  406. # define _IO_cleanup_region_start(_fct, _fp) /**/
  407. # define _IO_cleanup_region_end(_Doit) /**/
  408. #endif /* !_IO_MTSAFE_IO */
  409. extern int _IO_vfscanf (_IO_FILE * __restrict, const char * __restrict,
  410. _IO_va_list, int *__restrict) __THROW;
  411. extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict,
  412.  _IO_va_list) __THROW;
  413. extern _IO_ssize_t _IO_padn (_IO_FILE *, int, _IO_ssize_t) __THROW;
  414. extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t) __THROW;
  415. extern _IO_off64_t _IO_seekoff (_IO_FILE *, _IO_off64_t, int, int) __THROW;
  416. extern _IO_off64_t _IO_seekpos (_IO_FILE *, _IO_off64_t, int) __THROW;
  417. extern void _IO_free_backup_area (_IO_FILE *) __THROW;
  418. #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
  419. extern _IO_wint_t _IO_getwc (_IO_FILE *__fp) __THROW;
  420. extern _IO_wint_t _IO_putwc (wchar_t __wc, _IO_FILE *__fp) __THROW;
  421. extern int _IO_fwide (_IO_FILE *__fp, int __mode) __THROW;
  422. # if __GNUC__ >= 2
  423. /* While compiling glibc we have to handle compatibility with very old
  424.    versions.  */
  425. #  if defined _LIBC && defined SHARED
  426. #   include <shlib-compat.h>
  427. #   if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
  428. #    define _IO_fwide_maybe_incompatible 
  429.   (__builtin_expect (&_IO_stdin_used == NULL, 0))
  430. extern const int _IO_stdin_used;
  431. weak_extern (_IO_stdin_used);
  432. #   endif
  433. #  endif
  434. #  ifndef _IO_fwide_maybe_incompatible
  435. #   define _IO_fwide_maybe_incompatible (0)
  436. #  endif
  437. /* A special optimized version of the function above.  It optimizes the
  438.    case of initializing an unoriented byte stream.  */
  439. #  define _IO_fwide(__fp, __mode) 
  440.   ({ int __result = (__mode);       
  441.      if (__result < 0 && ! _IO_fwide_maybe_incompatible)       
  442.        {       
  443.  if ((__fp)->_mode == 0)       
  444.    /* We know that all we have to do is to set the flag.  */       
  445.    (__fp)->_mode = -1;       
  446.  __result = (__fp)->_mode;       
  447.        }       
  448.      else if (__builtin_constant_p (__mode) && (__mode) == 0)       
  449.        __result = _IO_fwide_maybe_incompatible ? -1 : (__fp)->_mode;       
  450.      else       
  451.        __result = _IO_fwide (__fp, __result);       
  452.      __result; })
  453. # endif
  454. extern int _IO_vfwscanf (_IO_FILE * __restrict, const wchar_t * __restrict,
  455.  _IO_va_list, int *__restrict) __THROW;
  456. extern int _IO_vfwprintf (_IO_FILE *__restrict, const wchar_t *__restrict,
  457.   _IO_va_list) __THROW;
  458. extern _IO_ssize_t _IO_wpadn (_IO_FILE *, wint_t, _IO_ssize_t) __THROW;
  459. extern void _IO_free_wbackup_area (_IO_FILE *) __THROW;
  460. #endif
  461. #ifdef __cplusplus
  462. }
  463. #endif
  464. #endif /* _IO_STDIO_H */