_stdio.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. /* Copyright (C) 2004-2005 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include <features.h>
  8. #include <assert.h>
  9. #include <errno.h>
  10. #include <fcntl.h>
  11. #include <limits.h>
  12. #include <signal.h>
  13. #include <stdint.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <stdarg.h>
  18. #include <unistd.h>
  19. #ifdef __UCLIBC_HAS_WCHAR__
  20. #include <wchar.h>
  21. #endif
  22. #include <bits/uClibc_mutex.h>
  23. #define __STDIO_THREADLOCK_OPENLIST_ADD \
  24. __UCLIBC_IO_MUTEX_LOCK(_stdio_openlist_add_lock)
  25. #define __STDIO_THREADUNLOCK_OPENLIST_ADD \
  26. __UCLIBC_IO_MUTEX_UNLOCK(_stdio_openlist_add_lock)
  27. #ifdef __STDIO_BUFFERS
  28. #define __STDIO_THREADLOCK_OPENLIST_DEL \
  29. __UCLIBC_IO_MUTEX_LOCK(_stdio_openlist_del_lock)
  30. #define __STDIO_THREADUNLOCK_OPENLIST_DEL \
  31. __UCLIBC_IO_MUTEX_UNLOCK(_stdio_openlist_del_lock)
  32. #ifdef __UCLIBC_HAS_THREADS__
  33. extern void __stdio_init_mutex(__UCLIBC_MUTEX_TYPE *m) attribute_hidden;
  34. extern volatile int _stdio_openlist_use_count attribute_hidden; /* _stdio_openlist_del_lock */
  35. #define __STDIO_OPENLIST_INC_USE \
  36. do { \
  37. __STDIO_THREADLOCK_OPENLIST_DEL; \
  38. ++_stdio_openlist_use_count; \
  39. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  40. } while (0)
  41. extern void _stdio_openlist_dec_use(void) attribute_hidden;
  42. #define __STDIO_OPENLIST_DEC_USE \
  43. _stdio_openlist_dec_use()
  44. extern int _stdio_openlist_del_count attribute_hidden; /* _stdio_openlist_del_lock */
  45. #define __STDIO_OPENLIST_INC_DEL_CNT \
  46. do { \
  47. __STDIO_THREADLOCK_OPENLIST_DEL; \
  48. ++_stdio_openlist_del_count; \
  49. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  50. } while (0)
  51. #define __STDIO_OPENLIST_DEC_DEL_CNT \
  52. do { \
  53. __STDIO_THREADLOCK_OPENLIST_DEL; \
  54. --_stdio_openlist_del_count; \
  55. __STDIO_THREADUNLOCK_OPENLIST_DEL; \
  56. } while (0)
  57. #endif /* __UCLIBC_HAS_THREADS__ */
  58. #endif /* __STDIO_BUFFERS */
  59. #ifndef __STDIO_THREADLOCK_OPENLIST_DEL
  60. #define __STDIO_THREADLOCK_OPENLIST_DEL ((void)0)
  61. #endif
  62. #ifndef __STDIO_THREADUNLOCK_OPENLIST_DEL
  63. #define __STDIO_THREADUNLOCK_OPENLIST_DEL ((void)0)
  64. #endif
  65. #ifndef __STDIO_OPENLIST_INC_USE
  66. #define __STDIO_OPENLIST_INC_USE ((void)0)
  67. #endif
  68. #ifndef __STDIO_OPENLIST_DEC_USE
  69. #define __STDIO_OPENLIST_DEC_USE ((void)0)
  70. #endif
  71. #ifndef __STDIO_OPENLIST_INC_DEL_CNT
  72. #define __STDIO_OPENLIST_INC_DEL_CNT ((void)0)
  73. #endif
  74. #ifndef __STDIO_OPENLIST_DEC_DEL_CNT
  75. #define __STDIO_OPENLIST_DEC_DEL_CNT ((void)0)
  76. #endif
  77. #define __UNDEFINED_OR_NONPORTABLE ((void)0)
  78. /**********************************************************************/
  79. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
  80. extern __ssize_t _cs_read(void *cookie, char *buf, size_t bufsize) attribute_hidden;
  81. extern __ssize_t _cs_write(void *cookie, const char *buf, size_t bufsize) attribute_hidden;
  82. extern int _cs_seek(void *cookie, __offmax_t *pos, int whence) attribute_hidden;
  83. extern int _cs_close(void *cookie) attribute_hidden;
  84. #define __STDIO_STREAM_RESET_GCS(S) \
  85. (S)->__cookie = &((S)->__filedes); \
  86. (S)->__gcs.read = _cs_read; \
  87. (S)->__gcs.write = _cs_write; \
  88. (S)->__gcs.seek = _cs_seek; \
  89. (S)->__gcs.close = _cs_close
  90. #define __READ(STREAMPTR,BUF,SIZE) \
  91. ((((STREAMPTR)->__gcs.read) == NULL) ? -1 : \
  92. (((STREAMPTR)->__gcs.read)((STREAMPTR)->__cookie,(BUF),(SIZE))))
  93. #define __WRITE(STREAMPTR,BUF,SIZE) \
  94. ((((STREAMPTR)->__gcs.write) == NULL) ? -1 : \
  95. (((STREAMPTR)->__gcs.write)((STREAMPTR)->__cookie,(BUF),(SIZE))))
  96. #define __SEEK(STREAMPTR,PPOS,WHENCE) \
  97. ((((STREAMPTR)->__gcs.seek) == NULL) ? -1 : \
  98. (((STREAMPTR)->__gcs.seek)((STREAMPTR)->__cookie,(PPOS),(WHENCE))))
  99. #define __CLOSE(STREAMPTR) \
  100. ((((STREAMPTR)->__gcs.close) == NULL) ? 0 : \
  101. (((STREAMPTR)->__gcs.close)((STREAMPTR)->__cookie)))
  102. #else /* __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__ */
  103. extern int __stdio_seek(FILE *stream, register __offmax_t *pos, int whence) attribute_hidden;
  104. #define __STDIO_STREAM_RESET_GCS(S) ((void)0)
  105. #define __READ(STREAMPTR,BUF,SIZE) \
  106. (read((STREAMPTR)->__filedes,(BUF),(SIZE)))
  107. #define __WRITE(STREAMPTR,BUF,SIZE) \
  108. (write((STREAMPTR)->__filedes,(BUF),(SIZE)))
  109. #define __SEEK(STREAMPTR,PPOS,WHENCE) \
  110. (__stdio_seek((STREAMPTR),(PPOS),(WHENCE)))
  111. #define __CLOSE(STREAMPTR) \
  112. (close((STREAMPTR)->__filedes))
  113. #endif /* __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__ */
  114. /**********************************************************************/
  115. #ifdef __UCLIBC_HAS_WCHAR__
  116. #define __STDIO_STREAM_TRANS_TO_WRITE(S,O) __stdio_trans2w_o((S), (O))
  117. #define __STDIO_STREAM_TRANS_TO_READ(S,O) __stdio_trans2r_o((S), (O))
  118. #else
  119. #define __STDIO_STREAM_TRANS_TO_WRITE(S,O) __stdio_trans2w((S))
  120. #define __STDIO_STREAM_TRANS_TO_READ(S,O) __stdio_trans2r((S))
  121. #endif
  122. /**********************************************************************/
  123. #define __STDIO_STREAM_IS_READING(S) ((S)->__modeflags & __MASK_READING)
  124. #define __STDIO_STREAM_IS_WRITING(S) ((S)->__modeflags & __FLAG_WRITING)
  125. #define __STDIO_STREAM_SET_READING(S) ((S)->__modeflags |= __FLAG_READING)
  126. #define __STDIO_STREAM_SET_WRITING(S) ((S)->__modeflags |= __FLAG_WRITING)
  127. #define __STDIO_STREAM_IS_READING_OR_READONLY(S) \
  128. ((S)->__modeflags & (__MASK_READING|__FLAG_READONLY))
  129. #define __STDIO_STREAM_IS_WRITING_OR_WRITEONLY(S) \
  130. ((S)->__modeflags & (__FLAG_WRITING|__FLAG_WRITEONLY))
  131. #define __STDIO_STREAM_IS_READONLY(S) ((S)->__modeflags & __FLAG_READONLY)
  132. #define __STDIO_STREAM_IS_WRITEONLY(S) ((S)->__modeflags & __FLAG_WRITEONLY)
  133. /**********************************************************************/
  134. #ifdef __UCLIBC_HAS_WCHAR__
  135. #define __STDIO_STREAM_IS_NARROW_WRITING(S) \
  136. (((S)->__modeflags & (__FLAG_WRITING|__FLAG_NARROW)) \
  137. == (__FLAG_WRITING|__FLAG_NARROW))
  138. #define __STDIO_STREAM_IS_WIDE_WRITING(S) \
  139. (((S)->__modeflags & (__FLAG_WRITING|__FLAG_WIDE)) \
  140. == (__FLAG_WRITING|__FLAG_WIDE))
  141. #if (__FLAG_NARROW <= __MASK_READING)
  142. #error assumption violated regarding __FLAG_NARROW
  143. #endif
  144. #define __STDIO_STREAM_IS_NARROW_READING(S) \
  145. (((S)->__modeflags & (__MASK_READING|__FLAG_NARROW)) > __FLAG_NARROW)
  146. #define __STDIO_STREAM_IS_WIDE_READING(S) \
  147. (((S)->__modeflags & (__MASK_READING|__FLAG_WIDE)) > __FLAG_WIDE)
  148. #define __STDIO_STREAM_IS_NARROW(S) ((S)->__modeflags & __FLAG_NARROW)
  149. #define __STDIO_STREAM_IS_WIDE(S) ((S)->__modeflags & __FLAG_WIDE)
  150. #define __STDIO_STREAM_SET_NARROW(S) \
  151. ((void)((S)->__modeflags |= __FLAG_NARROW))
  152. #define __STDIO_STREAM_SET_WIDE(S) \
  153. ((void)((S)->__modeflags |= __FLAG_WIDE))
  154. #else
  155. #define __STDIO_STREAM_IS_NARROW_WRITING(S) __STDIO_STREAM_IS_WRITING(S)
  156. #define __STDIO_STREAM_IS_NARROW_READING(S) __STDIO_STREAM_IS_READING(S)
  157. #define __STDIO_STREAM_IS_NARROW(S) (1)
  158. #define __STDIO_STREAM_IS_WIDE(S) (0)
  159. #define __STDIO_STREAM_SET_NARROW(S) ((void)0)
  160. #define __STDIO_STREAM_SET_WIDE(S) ((void)0)
  161. #endif
  162. /**********************************************************************/
  163. #define __STDIO_STREAM_SET_EOF(S) \
  164. ((void)((S)->__modeflags |= __FLAG_EOF))
  165. #define __STDIO_STREAM_SET_ERROR(S) \
  166. ((void)((S)->__modeflags |= __FLAG_ERROR))
  167. #define __STDIO_STREAM_CLEAR_EOF(S) \
  168. ((void)((S)->__modeflags &= ~__FLAG_EOF))
  169. #define __STDIO_STREAM_CLEAR_ERROR(S) \
  170. ((void)((S)->__modeflags &= ~__FLAG_ERROR))
  171. #define __STDIO_STREAM_CLEAR_READING_AND_UNGOTS(S) \
  172. ((void)((S)->__modeflags &= ~__MASK_READING))
  173. #define __STDIO_STREAM_CLEAR_WRITING(S) \
  174. ((void)((S)->__modeflags &= ~__FLAG_WRITING))
  175. #ifdef __UCLIBC_HAS_STDIO_GETC_MACRO__
  176. # define __STDIO_STREAM_DISABLE_GETC(S) \
  177. ((void)((S)->__bufgetc_u = (S)->__bufstart))
  178. # define __STDIO_STREAM_ENABLE_GETC(S) \
  179. ((void)((S)->__bufgetc_u = (S)->__bufread))
  180. # define __STDIO_STREAM_CAN_USE_BUFFER_GET(S) \
  181. ((S)->__bufpos < (S)->__bufgetc_u)
  182. #else
  183. # define __STDIO_STREAM_DISABLE_GETC(S) ((void)0)
  184. # define __STDIO_STREAM_ENABLE_GETC(S) ((void)0)
  185. # define __STDIO_STREAM_CAN_USE_BUFFER_GET(S) (0)
  186. #endif
  187. #ifdef __UCLIBC_HAS_STDIO_PUTC_MACRO__
  188. # define __STDIO_STREAM_DISABLE_PUTC(S) \
  189. ((void)((S)->__bufputc_u = (S)->__bufstart))
  190. # define __STDIO_STREAM_ENABLE_PUTC(S) \
  191. ((void)((S)->__bufputc_u = (S)->__bufend))
  192. # define __STDIO_STREAM_CAN_USE_BUFFER_ADD(S) \
  193. ((S)->__bufpos < (S)->__bufputc_u)
  194. #else
  195. # define __STDIO_STREAM_DISABLE_PUTC(S) ((void)0)
  196. # define __STDIO_STREAM_ENABLE_PUTC(S) ((void)0)
  197. # define __STDIO_STREAM_CAN_USE_BUFFER_ADD(S) (0)
  198. #endif
  199. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
  200. #define __STDIO_STREAM_IS_CUSTOM(S) ((S)->__cookie != &((S)->__filedes))
  201. #else
  202. #define __STDIO_STREAM_IS_CUSTOM(S) (0)
  203. #endif
  204. /**********************************************************************/
  205. #ifdef __STDIO_BUFFERS
  206. #define __STDIO_STREAM_FREE_BUFFER(S) \
  207. do { if ((S)->__modeflags & __FLAG_FREEBUF) \
  208. free((S)->__bufstart); } while (0)
  209. #else
  210. #define __STDIO_STREAM_FREE_BUFFER(S) ((void)0)
  211. #endif
  212. #define __STDIO_STREAM_FREE_FILE(S) \
  213. do { if ((S)->__modeflags & __FLAG_FREEFILE) \
  214. free((S)); } while (0)
  215. #ifdef __UCLIBC_HAS_LFS__
  216. #define __STDIO_WHEN_LFS(E) E
  217. #else
  218. #define __STDIO_WHEN_LFS(E) ((void)0)
  219. #endif
  220. /**********************************************************************/
  221. /* The following return 0 on success. */
  222. #ifdef __STDIO_BUFFERS
  223. /* Assume stream in valid writing state. Do not reset writing flag
  224. * or disble putc macro unless error. */
  225. /* Should we assume that buffer is not empty to avoid a check? */
  226. extern size_t __stdio_wcommit(FILE *__restrict stream) attribute_hidden;
  227. /* Remember to fail if at EOF! */
  228. extern size_t __stdio_rfill(FILE *__restrict stream) attribute_hidden;
  229. extern size_t __stdio_fwrite(const unsigned char *__restrict buffer,
  230. size_t bytes, FILE *__restrict stream) attribute_hidden;
  231. #else
  232. #define __stdio_fwrite(B,N,S) __stdio_WRITE((S),(B),(N))
  233. #endif
  234. extern size_t __stdio_WRITE(FILE *stream, const unsigned char *buf,
  235. size_t bufsize) attribute_hidden;
  236. extern size_t __stdio_READ(FILE *stream, unsigned char *buf,
  237. size_t bufsize) attribute_hidden;
  238. extern int __stdio_trans2r(FILE *__restrict stream) attribute_hidden;
  239. extern int __stdio_trans2w(FILE *__restrict stream) attribute_hidden;
  240. extern int __stdio_trans2r_o(FILE *__restrict stream, int oflag) attribute_hidden;
  241. extern int __stdio_trans2w_o(FILE *__restrict stream, int oflag) attribute_hidden;
  242. extern uintmax_t _load_inttype(int desttype, register const void *src, int uflag) attribute_hidden;
  243. extern void _store_inttype(void *dest, int desttype, uintmax_t val) attribute_hidden;
  244. /**********************************************************************/
  245. #ifdef __STDIO_BUFFERS
  246. #define __STDIO_STREAM_IS_FBF(S) (!((S)->__modeflags & __MASK_BUFMODE))
  247. #define __STDIO_STREAM_IS_LBF(S) ((S)->__modeflags & __FLAG_LBF)
  248. #define __STDIO_STREAM_IS_NBF(S) ((S)->__modeflags & __FLAG_NBF)
  249. #define __STDIO_STREAM_BUFFER_SIZE(S) ((S)->__bufend - (S)->__bufstart)
  250. /* Valid when writing... */
  251. #define __STDIO_STREAM_BUFFER_ADD(S,C) (*(S)->__bufpos++ = (C))
  252. #define __STDIO_STREAM_BUFFER_UNADD(S) (--(S)->__bufpos)
  253. #define __STDIO_STREAM_BUFFER_WAVAIL(S) ((S)->__bufend - (S)->__bufpos)
  254. #define __STDIO_STREAM_BUFFER_WUSED(S) ((S)->__bufpos - (S)->__bufstart)
  255. #define __STDIO_COMMIT_WRITE_BUFFER(S) __stdio_wcommit((S))
  256. #ifdef __UCLIBC_HAS_WCHAR__
  257. #define __STDIO_STREAM_IS_NARROW_FBF(S) \
  258. (!((S)->__modeflags & (__MASK_BUFMODE|__FLAG_WIDE)))
  259. #else
  260. #define __STDIO_STREAM_IS_NARROW_FBF(S) __STDIO_STREAM_IS_FBF((S))
  261. #endif
  262. /* Valid when reading... */
  263. #define __STDIO_STREAM_BUFFER_RAVAIL(S) ((S)->__bufread - (S)->__bufpos)
  264. #define __STDIO_STREAM_BUFFER_GET(S) (*(S)->__bufpos++)
  265. #define __STDIO_FILL_READ_BUFFER(S) __stdio_rfill((S))
  266. #define __STDIO_STREAM_INIT_BUFREAD_BUFPOS(S) \
  267. (S)->__bufread = (S)->__bufpos = (S)->__bufstart
  268. #define __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES (-2)
  269. #define __STDIO_STREAM_FAKE_VSSCANF_FILEDES (-2)
  270. #define __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES (-3)
  271. #define __STDIO_STREAM_FAKE_VSWSCANF_FILEDES (-3)
  272. #define __STDIO_STREAM_IS_FAKE_VSNPRINTF(S) \
  273. ((S)->__filedes == __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES)
  274. #define __STDIO_STREAM_IS_FAKE_VSSCANF(S) \
  275. ((S)->__filedes == __STDIO_STREAM_FAKE_VSSCANF_FILEDES)
  276. #define __STDIO_STREAM_IS_FAKE_VSWPRINTF(S) \
  277. ((S)->__filedes == __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES)
  278. #define __STDIO_STREAM_IS_FAKE_VSWSCANF(S) \
  279. ((S)->__filedes == __STDIO_STREAM_FAKE_VSWSCANF_FILEDES)
  280. #else /* __STDIO_BUFFERS */
  281. #define __STDIO_STREAM_IS_FBF(S) (0)
  282. #define __STDIO_STREAM_IS_LBF(S) (0)
  283. #define __STDIO_STREAM_IS_NBF(S) (1)
  284. #define __STDIO_STREAM_BUFFER_SIZE(S) (0)
  285. #define __STDIO_STREAM_BUFFER_ADD(S,C) ((void)0)
  286. #define __STDIO_STREAM_BUFFER_UNADD(S) ((void)0)
  287. #define __STDIO_STREAM_BUFFER_WAVAIL(S) (0)
  288. #define __STDIO_STREAM_BUFFER_WUSED(S) (0)
  289. #define __STDIO_COMMIT_WRITE_BUFFER(S) (0)
  290. #define __STDIO_STREAM_IS_NARROW_FBF(S) (0)
  291. #define __STDIO_STREAM_BUFFER_RAVAIL(S) (0)
  292. #define __STDIO_STREAM_BUFFER_GET(S) (EOF)
  293. #define __STDIO_FILL_READ_BUFFER(S) (0)
  294. #define __STDIO_STREAM_INIT_BUFREAD_BUFPOS(S) ((void)0)
  295. #undef __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES
  296. #undef __STDIO_STREAM_FAKE_VSSCANF_FILEDES
  297. #undef __STDIO_STREAM_FAKE_VSWPRINTF_FILEDES
  298. #define __STDIO_STREAM_IS_FAKE_VSNPRINTF(S) (0)
  299. #define __STDIO_STREAM_IS_FAKE_VSSCANF(S) (0)
  300. #undef __STDIO_STREAM_IS_FAKE_VSWPRINTF
  301. # ifdef __USE_OLD_VFPRINTF__
  302. # define __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES_NB (-2)
  303. # define __STDIO_STREAM_IS_FAKE_VSNPRINTF_NB(S) \
  304. ((S)->__filedes == __STDIO_STREAM_FAKE_VSNPRINTF_FILEDES_NB)
  305. # endif
  306. # ifndef __UCLIBC_HAS_WCHAR__
  307. # define __STDIO_STREAM_FAKE_VSSCANF_FILEDES_NB (-2)
  308. # define __STDIO_STREAM_IS_FAKE_VSSCANF_NB(S) \
  309. ((S)->__filedes == __STDIO_STREAM_FAKE_VSSCANF_FILEDES_NB)
  310. # endif
  311. #endif /* __STDIO_BUFFERS */
  312. /**********************************************************************/
  313. extern int __stdio_adjust_position(FILE *__restrict stream, __offmax_t *pos) attribute_hidden;
  314. #ifdef __STDIO_HAS_OPENLIST
  315. /* Uses an implementation hack!!! */
  316. #define __STDIO_FLUSH_LBF_STREAMS \
  317. fflush_unlocked((FILE *) &_stdio_openlist)
  318. #else
  319. #define __STDIO_FLUSH_LBF_STREAMS ((void)0)
  320. #endif
  321. #ifdef NDEBUG
  322. #define __STDIO_STREAM_VALIDATE(S) ((void)0)
  323. #else
  324. extern void _stdio_validate_FILE(const FILE *stream) attribute_hidden;
  325. #define __STDIO_STREAM_VALIDATE(S) _stdio_validate_FILE((S))
  326. #endif
  327. #ifdef __STDIO_MBSTATE
  328. #define __COPY_MBSTATE(dest,src) \
  329. ((void)((dest)->__mask = (src)->__mask, (dest)->__wc = (src)->__wc))
  330. #define __INIT_MBSTATE(dest) ((void)((dest)->__mask = 0))
  331. #else
  332. #define __COPY_MBSTATE(dest,src) ((void)0)
  333. #define __INIT_MBSTATE(dest) ((void)0)
  334. #endif
  335. /**********************************************************************/
  336. extern FILE *_stdio_fopen(intptr_t fname_or_mode, const char *__restrict mode,
  337. FILE *__restrict stream, int filedes) attribute_hidden;
  338. #ifdef __UCLIBC_HAS_WCHAR__
  339. extern size_t _wstdio_fwrite(const wchar_t *__restrict ws,
  340. size_t n, FILE *__restrict stream) attribute_hidden;
  341. #endif
  342. /**********************************************************************/
  343. extern int _vfprintf_internal (FILE * __restrict stream,
  344. const char * __restrict format,
  345. va_list arg) attribute_hidden;
  346. #ifdef __UCLIBC_HAS_WCHAR__
  347. extern int _vfwprintf_internal (FILE * __restrict stream,
  348. const wchar_t * __restrict format,
  349. va_list arg) attribute_hidden;
  350. #endif
  351. /**********************************************************************/
  352. /* Only use the macro below if you know fp is a valid FILE for a valid fd.
  353. * This is _not_ true for custom streams! */
  354. #define __FILENO_UNLOCKED(fp) ((fp)->__filedes)
  355. #define __FEOF_OR_FERROR_UNLOCKED(stream) \
  356. ((stream)->__modeflags & (__FLAG_EOF|__FLAG_ERROR))
  357. #if defined(__STDIO_BUFFERS) || defined(__USE_OLD_VFPRINTF__) || defined(__UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__)
  358. #define __STDIO_HAS_VSNPRINTF 1
  359. #endif