stdio.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. /*
  2. Copyright (C) 1991,1994-2002,2003,2004 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  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. /*
  17. * ISO C99 Standard: 7.19 Input/output <stdio.h>
  18. */
  19. #ifndef _STDIO_H
  20. #if !defined __need_FILE && !defined __need___FILE
  21. # define _STDIO_H 1
  22. # include <features.h>
  23. __BEGIN_DECLS
  24. # define __need_size_t
  25. # define __need_NULL
  26. # include <stddef.h>
  27. # include <bits/types.h>
  28. # define __need_FILE
  29. # define __need___FILE
  30. #endif /* Don't need FILE. */
  31. #if !defined __FILE_defined && defined __need_FILE
  32. __BEGIN_NAMESPACE_STD
  33. /* The opaque type of streams. This is the definition used elsewhere. */
  34. typedef struct __STDIO_FILE_STRUCT FILE;
  35. __END_NAMESPACE_STD
  36. #if defined __USE_LARGEFILE64 || defined __USE_SVID || defined __USE_POSIX \
  37. || defined __USE_BSD || defined __USE_ISOC99 || defined __USE_XOPEN \
  38. || defined __USE_POSIX2
  39. __USING_NAMESPACE_STD(FILE)
  40. #endif
  41. # define __FILE_defined 1
  42. #endif /* FILE not defined. */
  43. #undef __need_FILE
  44. #if !defined ____FILE_defined && defined __need___FILE
  45. /* The opaque type of streams. This is the definition used elsewhere. */
  46. typedef struct __STDIO_FILE_STRUCT __FILE;
  47. # define ____FILE_defined 1
  48. #endif /* __FILE not defined. */
  49. #undef __need___FILE
  50. #ifdef _STDIO_H
  51. #undef _STDIO_USES_IOSTREAM
  52. #include <bits/uClibc_stdio.h>
  53. /* This define avoids name pollution if we're using GNU stdarg.h */
  54. # define __need___va_list
  55. #include <stdarg.h>
  56. /* The type of the second argument to `fgetpos' and `fsetpos'. */
  57. __BEGIN_NAMESPACE_STD
  58. #ifndef __USE_FILE_OFFSET64
  59. typedef __STDIO_fpos_t fpos_t;
  60. #else
  61. typedef __STDIO_fpos64_t fpos_t;
  62. #endif
  63. __END_NAMESPACE_STD
  64. #ifdef __USE_LARGEFILE64
  65. typedef __STDIO_fpos64_t fpos64_t;
  66. #endif
  67. /* The possibilities for the third argument to `setvbuf'. */
  68. #define _IOFBF __STDIO_IOFBF /* Fully buffered. */
  69. #define _IOLBF __STDIO_IOLBF /* Line buffered. */
  70. #define _IONBF __STDIO_IONBF /* No buffering. */
  71. /* Default buffer size. */
  72. #ifndef BUFSIZ
  73. # define BUFSIZ __STDIO_BUFSIZ
  74. #endif
  75. /* End of file character.
  76. Some things throughout the library rely on this being -1. */
  77. #ifndef EOF
  78. # define EOF (-1)
  79. #endif
  80. /* The possibilities for the third argument to `fseek'.
  81. These values should not be changed. */
  82. #define SEEK_SET 0 /* Seek from beginning of file. */
  83. #define SEEK_CUR 1 /* Seek from current position. */
  84. #define SEEK_END 2 /* Seek from end of file. */
  85. #if defined __USE_SVID || defined __USE_XOPEN
  86. /* Default path prefix for `mkstemp'. */
  87. # define P_tmpdir "/tmp"
  88. #endif
  89. /* Get the values:
  90. L_tmpnam How long an array of chars must be to be passed to `tmpnam'.
  91. TMP_MAX The minimum number of unique filenames generated by tmpnam
  92. (and tempnam when it uses tmpnam's name space),
  93. or tempnam (the two are separate).
  94. L_ctermid How long an array to pass to `ctermid'.
  95. L_cuserid How long an array to pass to `cuserid'.
  96. FOPEN_MAX Minimum number of files that can be open at once.
  97. FILENAME_MAX Maximum length of a filename. */
  98. #include <bits/stdio_lim.h>
  99. /* Standard streams. */
  100. extern FILE *stdin; /* Standard input stream. */
  101. extern FILE *stdout; /* Standard output stream. */
  102. extern FILE *stderr; /* Standard error output stream. */
  103. /* C89/C99 say they're macros. Make them happy. */
  104. #define stdin stdin
  105. #define stdout stdout
  106. #define stderr stderr
  107. __BEGIN_NAMESPACE_STD
  108. /* Remove file FILENAME. */
  109. extern int remove (__const char *__filename) __THROW;
  110. libc_hidden_proto(remove)
  111. /* Rename file OLD to NEW. */
  112. extern int rename (__const char *__old, __const char *__new) __THROW;
  113. __END_NAMESPACE_STD
  114. #ifdef __USE_ATFILE
  115. /* Rename file OLD relative to OLDFD to NEW relative to NEWFD. */
  116. extern int renameat (int __oldfd, __const char *__old, int __newfd,
  117. __const char *__new) __THROW;
  118. #endif
  119. __BEGIN_NAMESPACE_STD
  120. /* Create a temporary file and open it read/write.
  121. This function is a possible cancellation points and therefore not
  122. marked with __THROW. */
  123. #ifndef __USE_FILE_OFFSET64
  124. extern FILE *tmpfile (void) __wur;
  125. #else
  126. # ifdef __REDIRECT
  127. extern FILE *__REDIRECT (tmpfile, (void), tmpfile64) __wur;
  128. # else
  129. # define tmpfile tmpfile64
  130. # endif
  131. #endif
  132. #ifdef __USE_LARGEFILE64
  133. extern FILE *tmpfile64 (void) __wur;
  134. #endif
  135. #ifdef __UCLIBC_SUSV4_LEGACY__
  136. /* Generate a temporary filename. */
  137. extern char *tmpnam (char *__s) __THROW __wur;
  138. #endif
  139. __END_NAMESPACE_STD
  140. #if defined __USE_MISC && defined __UCLIBC_SUSV4_LEGACY__
  141. /* This is the reentrant variant of `tmpnam'. The only difference is
  142. that it does not allow S to be NULL. */
  143. extern char *tmpnam_r (char *__s) __THROW __wur;
  144. #endif
  145. #if (defined __USE_SVID || defined __USE_XOPEN) && defined __UCLIBC_SUSV4_LEGACY__
  146. /* Generate a unique temporary filename using up to five characters of PFX
  147. if it is not NULL. The directory to put this file in is searched for
  148. as follows: First the environment variable "TMPDIR" is checked.
  149. If it contains the name of a writable directory, that directory is used.
  150. If not and if DIR is not NULL, that value is checked. If that fails,
  151. P_tmpdir is tried and finally "/tmp". The storage for the filename
  152. is allocated by `malloc'. */
  153. extern char *tempnam (__const char *__dir, __const char *__pfx)
  154. __THROW __attribute_malloc__ __wur;
  155. #endif
  156. __BEGIN_NAMESPACE_STD
  157. /* Close STREAM.
  158. This function is a possible cancellation point and therefore not
  159. marked with __THROW. */
  160. extern int fclose (FILE *__stream);
  161. libc_hidden_proto(fclose)
  162. /* Flush STREAM, or all streams if STREAM is NULL.
  163. This function is a possible cancellation point and therefore not
  164. marked with __THROW. */
  165. extern int fflush (FILE *__stream);
  166. libc_hidden_proto(fflush)
  167. __END_NAMESPACE_STD
  168. #ifdef __USE_MISC
  169. /* Faster versions when locking is not required.
  170. This function is not part of POSIX and therefore no official
  171. cancellation point. But due to similarity with an POSIX interface
  172. or due to the implementation it is a cancellation point and
  173. therefore not marked with __THROW. */
  174. extern int fflush_unlocked (FILE *__stream);
  175. libc_hidden_proto(fflush_unlocked)
  176. #endif
  177. #ifdef __USE_GNU
  178. /* Close all streams.
  179. This function is not part of POSIX and therefore no official
  180. cancellation point. But due to similarity with an POSIX interface
  181. or due to the implementation it is a cancellation point and
  182. therefore not marked with __THROW. */
  183. extern int fcloseall (void);
  184. #endif
  185. __BEGIN_NAMESPACE_STD
  186. #ifndef __USE_FILE_OFFSET64
  187. /* Open a file and create a new stream for it.
  188. This function is a possible cancellation point and therefore not
  189. marked with __THROW. */
  190. extern FILE *fopen (__const char *__restrict __filename,
  191. __const char *__restrict __modes) __wur;
  192. libc_hidden_proto(fopen)
  193. /* Open a file, replacing an existing stream with it.
  194. This function is a possible cancellation point and therefore not
  195. marked with __THROW. */
  196. extern FILE *freopen (__const char *__restrict __filename,
  197. __const char *__restrict __modes,
  198. FILE *__restrict __stream) __wur;
  199. #else
  200. # ifdef __REDIRECT
  201. extern FILE *__REDIRECT (fopen, (__const char *__restrict __filename,
  202. __const char *__restrict __modes), fopen64)
  203. __wur;
  204. extern FILE *__REDIRECT (freopen, (__const char *__restrict __filename,
  205. __const char *__restrict __modes,
  206. FILE *__restrict __stream), freopen64)
  207. __wur;
  208. # else
  209. # define fopen fopen64
  210. # define freopen freopen64
  211. # endif
  212. #endif
  213. __END_NAMESPACE_STD
  214. #ifdef __USE_LARGEFILE64
  215. extern FILE *fopen64 (__const char *__restrict __filename,
  216. __const char *__restrict __modes) __wur;
  217. libc_hidden_proto(fopen64)
  218. extern FILE *freopen64 (__const char *__restrict __filename,
  219. __const char *__restrict __modes,
  220. FILE *__restrict __stream) __wur;
  221. #endif
  222. #ifdef __USE_POSIX
  223. /* Create a new stream that refers to an existing system file descriptor. */
  224. extern FILE *fdopen (int __fd, __const char *__modes) __THROW __wur;
  225. libc_hidden_proto(fdopen)
  226. #endif
  227. #ifdef __USE_GNU
  228. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__
  229. /* Create a new stream that refers to the given magic cookie,
  230. and uses the given functions for input and output. */
  231. extern FILE *fopencookie (void *__restrict __magic_cookie,
  232. __const char *__restrict __modes,
  233. _IO_cookie_io_functions_t __io_funcs) __THROW __wur;
  234. libc_hidden_proto(fopencookie)
  235. /* Create a new stream that refers to a memory buffer. */
  236. extern FILE *fmemopen (void *__s, size_t __len, __const char *__modes)
  237. __THROW __wur;
  238. /* Open a stream that writes into a malloc'd buffer that is expanded as
  239. necessary. *BUFLOC and *SIZELOC are updated with the buffer's location
  240. and the number of characters written on fflush or fclose. */
  241. extern FILE *open_memstream (char **__restrict __bufloc,
  242. size_t *__restrict __sizeloc) __THROW __wur;
  243. libc_hidden_proto(open_memstream)
  244. #endif
  245. #endif
  246. __BEGIN_NAMESPACE_STD
  247. /* If BUF is NULL, make STREAM unbuffered.
  248. Else make it use buffer BUF, of size BUFSIZ. */
  249. extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __THROW;
  250. /* Make STREAM use buffering mode MODE.
  251. If BUF is not NULL, use N bytes of it for buffering;
  252. else allocate an internal buffer N bytes long. */
  253. extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
  254. int __modes, size_t __n) __THROW;
  255. libc_hidden_proto(setvbuf)
  256. __END_NAMESPACE_STD
  257. #ifdef __USE_BSD
  258. /* If BUF is NULL, make STREAM unbuffered.
  259. Else make it use SIZE bytes of BUF for buffering. */
  260. extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
  261. size_t __size) __THROW;
  262. /* Make STREAM line-buffered. */
  263. extern void setlinebuf (FILE *__stream) __THROW;
  264. #endif
  265. __BEGIN_NAMESPACE_STD
  266. /* Write formatted output to STREAM.
  267. This function is a possible cancellation point and therefore not
  268. marked with __THROW. */
  269. extern int fprintf (FILE *__restrict __stream,
  270. __const char *__restrict __format, ...);
  271. libc_hidden_proto(fprintf)
  272. /* Write formatted output to stdout.
  273. This function is a possible cancellation point and therefore not
  274. marked with __THROW. */
  275. extern int printf (__const char *__restrict __format, ...);
  276. libc_hidden_proto(printf)
  277. /* Write formatted output to S. */
  278. extern int sprintf (char *__restrict __s,
  279. __const char *__restrict __format, ...)
  280. __THROW __attribute__ ((__format__ (__printf__, 2, 3)));
  281. libc_hidden_proto(sprintf)
  282. /* Write formatted output to S from argument list ARG.
  283. This function is a possible cancellation point and therefore not
  284. marked with __THROW. */
  285. extern int vfprintf (FILE *__restrict __s, __const char *__restrict __format,
  286. __gnuc_va_list __arg);
  287. libc_hidden_proto(vfprintf)
  288. /* Write formatted output to stdout from argument list ARG.
  289. This function is a possible cancellation point and therefore not
  290. marked with __THROW. */
  291. extern int vprintf (__const char *__restrict __format, __gnuc_va_list __arg);
  292. /* Write formatted output to S from argument list ARG. */
  293. extern int vsprintf (char *__restrict __s, __const char *__restrict __format,
  294. __gnuc_va_list __arg)
  295. __THROW __attribute__ ((__format__ (__printf__, 2, 0)));
  296. __END_NAMESPACE_STD
  297. #if defined __USE_BSD || defined __USE_ISOC99 || defined __USE_UNIX98
  298. __BEGIN_NAMESPACE_C99
  299. /* Maximum chars of output to write in MAXLEN. */
  300. extern int snprintf (char *__restrict __s, size_t __maxlen,
  301. __const char *__restrict __format, ...)
  302. __THROW __attribute__ ((__format__ (__printf__, 3, 4)));
  303. libc_hidden_proto(snprintf)
  304. extern int vsnprintf (char *__restrict __s, size_t __maxlen,
  305. __const char *__restrict __format, __gnuc_va_list __arg)
  306. __THROW __attribute__ ((__format__ (__printf__, 3, 0)));
  307. libc_hidden_proto(vsnprintf)
  308. __END_NAMESPACE_C99
  309. #endif
  310. #ifdef __USE_GNU
  311. /* Write formatted output to a string dynamically allocated with `malloc'.
  312. Store the address of the string in *PTR. */
  313. extern int vasprintf (char **__restrict __ptr, __const char *__restrict __f,
  314. __gnuc_va_list __arg)
  315. __THROW __attribute__ ((__format__ (__printf__, 2, 0))) __wur;
  316. libc_hidden_proto(vasprintf)
  317. #if 0 /* uClibc: disabled */
  318. extern int __asprintf (char **__restrict __ptr,
  319. __const char *__restrict __fmt, ...)
  320. __THROW __attribute__ ((__format__ (__printf__, 2, 3))) __wur;
  321. #endif
  322. extern int asprintf (char **__restrict __ptr,
  323. __const char *__restrict __fmt, ...)
  324. __THROW __attribute__ ((__format__ (__printf__, 2, 3))) __wur;
  325. libc_hidden_proto(asprintf)
  326. /* Write formatted output to a file descriptor.
  327. These functions are not part of POSIX and therefore no official
  328. cancellation point. But due to similarity with an POSIX interface
  329. or due to the implementation they are cancellation points and
  330. therefore not marked with __THROW. */
  331. extern int vdprintf (int __fd, __const char *__restrict __fmt,
  332. __gnuc_va_list __arg)
  333. __attribute__ ((__format__ (__printf__, 2, 0)));
  334. libc_hidden_proto(vdprintf)
  335. extern int dprintf (int __fd, __const char *__restrict __fmt, ...)
  336. __attribute__ ((__format__ (__printf__, 2, 3)));
  337. #endif
  338. __BEGIN_NAMESPACE_STD
  339. /* Read formatted input from STREAM.
  340. This function is a possible cancellation point and therefore not
  341. marked with __THROW. */
  342. extern int fscanf (FILE *__restrict __stream,
  343. __const char *__restrict __format, ...)
  344. __attribute__ ((__format__ (__scanf__, 2, 3))) __wur;
  345. libc_hidden_proto(fscanf)
  346. /* Read formatted input from stdin.
  347. This function is a possible cancellation point and therefore not
  348. marked with __THROW. */
  349. extern int scanf (__const char *__restrict __format, ...)
  350. __attribute__ ((__format__ (__scanf__, 1, 2))) __wur;
  351. /* Read formatted input from S. */
  352. extern int sscanf (__const char *__restrict __s,
  353. __const char *__restrict __format, ...)
  354. __THROW __attribute__ ((__format__ (__scanf__, 2, 3)));
  355. libc_hidden_proto(sscanf)
  356. __END_NAMESPACE_STD
  357. #ifdef __USE_ISOC99
  358. __BEGIN_NAMESPACE_C99
  359. /* Read formatted input from S into argument list ARG.
  360. This function is a possible cancellation point and therefore not
  361. marked with __THROW. */
  362. extern int vfscanf (FILE *__restrict __s, __const char *__restrict __format,
  363. __gnuc_va_list __arg)
  364. __attribute__ ((__format__ (__scanf__, 2, 0))) __wur;
  365. libc_hidden_proto(vfscanf)
  366. /* Read formatted input from stdin into argument list ARG.
  367. This function is a possible cancellation point and therefore not
  368. marked with __THROW. */
  369. extern int vscanf (__const char *__restrict __format, __gnuc_va_list __arg)
  370. __attribute__ ((__format__ (__scanf__, 1, 0))) __wur;
  371. /* Read formatted input from S into argument list ARG. */
  372. extern int vsscanf (__const char *__restrict __s,
  373. __const char *__restrict __format, __gnuc_va_list __arg)
  374. __THROW __attribute__ ((__format__ (__scanf__, 2, 0)));
  375. libc_hidden_proto(vsscanf)
  376. __END_NAMESPACE_C99
  377. #endif /* Use ISO C9x. */
  378. __BEGIN_NAMESPACE_STD
  379. /* Read a character from STREAM.
  380. These functions are possible cancellation points and therefore not
  381. marked with __THROW. */
  382. extern int fgetc (FILE *__stream);
  383. libc_hidden_proto(fgetc)
  384. extern int getc (FILE *__stream);
  385. /* Read a character from stdin.
  386. This function is a possible cancellation point and therefore not
  387. marked with __THROW. */
  388. extern int getchar (void);
  389. __END_NAMESPACE_STD
  390. /* The C standard explicitly says this is a macro, so we always do the
  391. optimization for it. */
  392. #define getc(_fp) __GETC(_fp)
  393. #if defined __USE_POSIX || defined __USE_MISC
  394. /* These are defined in POSIX.1:1996.
  395. These functions are possible cancellation points and therefore not
  396. marked with __THROW. */
  397. extern int getc_unlocked (FILE *__stream);
  398. libc_hidden_proto(getc_unlocked)
  399. extern int getchar_unlocked (void);
  400. libc_hidden_proto(getchar_unlocked)
  401. /* SUSv3 allows getc_unlocked to be a macro */
  402. #define getc_unlocked(_fp) __GETC_UNLOCKED(_fp)
  403. #endif /* Use POSIX or MISC. */
  404. #ifdef __USE_MISC
  405. /* Faster version when locking is not necessary.
  406. This function is not part of POSIX and therefore no official
  407. cancellation point. But due to similarity with an POSIX interface
  408. or due to the implementation it is a cancellation point and
  409. therefore not marked with __THROW. */
  410. extern int fgetc_unlocked (FILE *__stream);
  411. libc_hidden_proto(fgetc_unlocked)
  412. #endif /* Use MISC. */
  413. __BEGIN_NAMESPACE_STD
  414. /* Write a character to STREAM.
  415. These functions are possible cancellation points and therefore not
  416. marked with __THROW.
  417. These functions is a possible cancellation point and therefore not
  418. marked with __THROW. */
  419. extern int fputc (int __c, FILE *__stream);
  420. libc_hidden_proto(fputc)
  421. extern int putc (int __c, FILE *__stream);
  422. libc_hidden_proto(putc)
  423. /* Write a character to stdout.
  424. This function is a possible cancellation point and therefore not
  425. marked with __THROW. */
  426. extern int putchar (int __c);
  427. __END_NAMESPACE_STD
  428. /* The C standard explicitly says this can be a macro,
  429. so we always do the optimization for it. */
  430. #define putc(_ch, _fp) __PUTC(_ch, _fp)
  431. #ifdef __USE_MISC
  432. /* Faster version when locking is not necessary.
  433. This function is not part of POSIX and therefore no official
  434. cancellation point. But due to similarity with an POSIX interface
  435. or due to the implementation it is a cancellation point and
  436. therefore not marked with __THROW. */
  437. extern int fputc_unlocked (int __c, FILE *__stream);
  438. libc_hidden_proto(fputc_unlocked)
  439. #endif /* Use MISC. */
  440. #if defined __USE_POSIX || defined __USE_MISC
  441. /* These are defined in POSIX.1:1996.
  442. These functions are possible cancellation points and therefore not
  443. marked with __THROW. */
  444. extern int putc_unlocked (int __c, FILE *__stream);
  445. libc_hidden_proto(putc_unlocked)
  446. extern int putchar_unlocked (int __c);
  447. /* SUSv3 allows putc_unlocked to be a macro */
  448. #define putc_unlocked(_ch, _fp) __PUTC_UNLOCKED(_ch, _fp)
  449. #endif /* Use POSIX or MISC. */
  450. #if defined __USE_SVID || defined __USE_MISC \
  451. || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  452. /* Get a word (int) from STREAM. */
  453. extern int getw (FILE *__stream);
  454. /* Write a word (int) to STREAM. */
  455. extern int putw (int __w, FILE *__stream);
  456. #endif
  457. __BEGIN_NAMESPACE_STD
  458. /* Get a newline-terminated string of finite length from STREAM.
  459. This function is a possible cancellation point and therefore not
  460. marked with __THROW. */
  461. extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
  462. __wur;
  463. libc_hidden_proto(fgets)
  464. /* Get a newline-terminated string from stdin, removing the newline.
  465. DO NOT USE THIS FUNCTION!! There is no limit on how much it will read.
  466. This function is a possible cancellation point and therefore not
  467. marked with __THROW. */
  468. extern char *gets (char *__s) __wur;
  469. __END_NAMESPACE_STD
  470. #ifdef __USE_GNU
  471. /* This function does the same as `fgets' but does not lock the stream.
  472. This function is not part of POSIX and therefore no official
  473. cancellation point. But due to similarity with an POSIX interface
  474. or due to the implementation it is a cancellation point and
  475. therefore not marked with __THROW. */
  476. extern char *fgets_unlocked (char *__restrict __s, int __n,
  477. FILE *__restrict __stream) __wur;
  478. libc_hidden_proto(fgets_unlocked)
  479. #endif
  480. #ifdef __USE_GNU
  481. /* Read up to (and including) a DELIMITER from STREAM into *LINEPTR
  482. (and null-terminate it). *LINEPTR is a pointer returned from malloc (or
  483. NULL), pointing to *N characters of space. It is realloc'd as
  484. necessary. Returns the number of characters read (not including the
  485. null terminator), or -1 on error or EOF.
  486. These functions are not part of POSIX and therefore no official
  487. cancellation point. But due to similarity with an POSIX interface
  488. or due to the implementation they are cancellation points and
  489. therefore not marked with __THROW. */
  490. #if 0 /* uClibc: disabled */
  491. extern __ssize_t __getdelim (char **__restrict __lineptr,
  492. size_t *__restrict __n, int __delimiter,
  493. FILE *__restrict __stream) __wur;
  494. #endif
  495. extern __ssize_t getdelim (char **__restrict __lineptr,
  496. size_t *__restrict __n, int __delimiter,
  497. FILE *__restrict __stream) __wur;
  498. libc_hidden_proto(getdelim)
  499. /* Like `getdelim', but reads up to a newline.
  500. This function is not part of POSIX and therefore no official
  501. cancellation point. But due to similarity with an POSIX interface
  502. or due to the implementation it is a cancellation point and
  503. therefore not marked with __THROW. */
  504. extern __ssize_t getline (char **__restrict __lineptr,
  505. size_t *__restrict __n,
  506. FILE *__restrict __stream) __wur;
  507. libc_hidden_proto(getline)
  508. #endif
  509. __BEGIN_NAMESPACE_STD
  510. /* Write a string to STREAM.
  511. This function is a possible cancellation points and therefore not
  512. marked with __THROW. */
  513. extern int fputs (__const char *__restrict __s, FILE *__restrict __stream);
  514. libc_hidden_proto(fputs)
  515. /* Write a string, followed by a newline, to stdout.
  516. This function is a possible cancellation points and therefore not
  517. marked with __THROW. */
  518. extern int puts (__const char *__s);
  519. /* Push a character back onto the input buffer of STREAM.
  520. This function is a possible cancellation points and therefore not
  521. marked with __THROW. */
  522. extern int ungetc (int __c, FILE *__stream);
  523. libc_hidden_proto(ungetc)
  524. /* Read chunks of generic data from STREAM.
  525. This function is a possible cancellation points and therefore not
  526. marked with __THROW. */
  527. extern size_t fread (void *__restrict __ptr, size_t __size,
  528. size_t __n, FILE *__restrict __stream) __wur;
  529. libc_hidden_proto(fread)
  530. /* Write chunks of generic data to STREAM.
  531. This function is a possible cancellation points and therefore not
  532. marked with __THROW. */
  533. extern size_t fwrite (__const void *__restrict __ptr, size_t __size,
  534. size_t __n, FILE *__restrict __s) __wur;
  535. libc_hidden_proto(fwrite)
  536. __END_NAMESPACE_STD
  537. #ifdef __USE_GNU
  538. /* This function does the same as `fputs' but does not lock the stream.
  539. This function is not part of POSIX and therefore no official
  540. cancellation point. But due to similarity with an POSIX interface
  541. or due to the implementation it is a cancellation point and
  542. therefore not marked with __THROW. */
  543. extern int fputs_unlocked (__const char *__restrict __s,
  544. FILE *__restrict __stream);
  545. libc_hidden_proto(fputs_unlocked)
  546. #endif
  547. #ifdef __USE_MISC
  548. /* Faster versions when locking is not necessary.
  549. These functions are not part of POSIX and therefore no official
  550. cancellation point. But due to similarity with an POSIX interface
  551. or due to the implementation they are cancellation points and
  552. therefore not marked with __THROW. */
  553. extern size_t fread_unlocked (void *__restrict __ptr, size_t __size,
  554. size_t __n, FILE *__restrict __stream) __wur;
  555. libc_hidden_proto(fread_unlocked)
  556. extern size_t fwrite_unlocked (__const void *__restrict __ptr, size_t __size,
  557. size_t __n, FILE *__restrict __stream) __wur;
  558. libc_hidden_proto(fwrite_unlocked)
  559. #endif
  560. __BEGIN_NAMESPACE_STD
  561. /* Seek to a certain position on STREAM.
  562. This function is a possible cancellation point and therefore not
  563. marked with __THROW. */
  564. extern int fseek (FILE *__stream, long int __off, int __whence);
  565. libc_hidden_proto(fseek)
  566. /* Return the current position of STREAM.
  567. This function is a possible cancellation point and therefore not
  568. marked with __THROW. */
  569. extern long int ftell (FILE *__stream) __wur;
  570. libc_hidden_proto(ftell)
  571. /* Rewind to the beginning of STREAM.
  572. This function is a possible cancellation point and therefore not
  573. marked with __THROW. */
  574. extern void rewind (FILE *__stream);
  575. libc_hidden_proto(rewind)
  576. __END_NAMESPACE_STD
  577. /* The Single Unix Specification, Version 2, specifies an alternative,
  578. more adequate interface for the two functions above which deal with
  579. file offset. `long int' is not the right type. These definitions
  580. are originally defined in the Large File Support API. */
  581. #if defined __USE_LARGEFILE || defined __USE_XOPEN2K
  582. # ifndef __USE_FILE_OFFSET64
  583. /* Seek to a certain position on STREAM.
  584. This function is a possible cancellation point and therefore not
  585. marked with __THROW. */
  586. extern int fseeko (FILE *__stream, __off_t __off, int __whence);
  587. /* Return the current position of STREAM.
  588. This function is a possible cancellation point and therefore not
  589. marked with __THROW. */
  590. extern __off_t ftello (FILE *__stream) __wur;
  591. # else
  592. # ifdef __REDIRECT
  593. extern int __REDIRECT (fseeko,
  594. (FILE *__stream, __off64_t __off, int __whence),
  595. fseeko64);
  596. extern __off64_t __REDIRECT (ftello, (FILE *__stream), ftello64);
  597. # else
  598. # define fseeko fseeko64
  599. # define ftello ftello64
  600. # endif
  601. # endif
  602. #endif
  603. __BEGIN_NAMESPACE_STD
  604. #ifndef __USE_FILE_OFFSET64
  605. /* Get STREAM's position.
  606. This function is a possible cancellation point and therefore not
  607. marked with __THROW. */
  608. extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
  609. /* Set STREAM's position.
  610. This function is a possible cancellation point and therefore not
  611. marked with __THROW. */
  612. extern int fsetpos (FILE *__stream, __const fpos_t *__pos);
  613. #else
  614. # ifdef __REDIRECT
  615. extern int __REDIRECT (fgetpos, (FILE *__restrict __stream,
  616. fpos_t *__restrict __pos), fgetpos64);
  617. extern int __REDIRECT (fsetpos,
  618. (FILE *__stream, __const fpos_t *__pos), fsetpos64);
  619. # else
  620. # define fgetpos fgetpos64
  621. # define fsetpos fsetpos64
  622. # endif
  623. #endif
  624. __END_NAMESPACE_STD
  625. #ifdef __USE_LARGEFILE64
  626. extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
  627. libc_hidden_proto(fseeko64)
  628. extern __off64_t ftello64 (FILE *__stream) __wur;
  629. libc_hidden_proto(ftello64)
  630. extern int fgetpos64 (FILE *__restrict __stream, fpos64_t *__restrict __pos);
  631. extern int fsetpos64 (FILE *__stream, __const fpos64_t *__pos);
  632. #endif
  633. __BEGIN_NAMESPACE_STD
  634. /* Clear the error and EOF indicators for STREAM. */
  635. extern void clearerr (FILE *__stream) __THROW;
  636. /* Return the EOF indicator for STREAM. */
  637. extern int feof (FILE *__stream) __THROW __wur;
  638. /* Return the error indicator for STREAM. */
  639. extern int ferror (FILE *__stream) __THROW __wur;
  640. __END_NAMESPACE_STD
  641. #ifdef __USE_MISC
  642. /* Faster versions when locking is not required. */
  643. extern void clearerr_unlocked (FILE *__stream) __THROW;
  644. extern int feof_unlocked (FILE *__stream) __THROW __wur;
  645. extern int ferror_unlocked (FILE *__stream) __THROW __wur;
  646. #endif
  647. __BEGIN_NAMESPACE_STD
  648. /* Print a message describing the meaning of the value of errno.
  649. This function is a possible cancellation point and therefore not
  650. marked with __THROW. */
  651. extern void perror (__const char *__s);
  652. libc_hidden_proto(perror)
  653. __END_NAMESPACE_STD
  654. #ifdef __UCLIBC_HAS_SYS_ERRLIST__
  655. /* These variables normally should not be used directly. The `strerror'
  656. function provides all the needed functionality. */
  657. #ifdef __USE_BSD
  658. extern int sys_nerr;
  659. extern __const char *__const sys_errlist[];
  660. #endif
  661. #endif /* __UCLIBC_HAS_SYS_ERRLIST__ */
  662. #ifdef __USE_POSIX
  663. /* Return the system file descriptor for STREAM. */
  664. extern int fileno (FILE *__stream) __THROW __wur;
  665. libc_hidden_proto(fileno)
  666. #endif /* Use POSIX. */
  667. #ifdef __USE_MISC
  668. /* Faster version when locking is not required. */
  669. extern int fileno_unlocked (FILE *__stream) __THROW __wur;
  670. libc_hidden_proto(fileno_unlocked)
  671. #endif
  672. #if (defined __USE_POSIX2 || defined __USE_SVID || defined __USE_BSD || \
  673. defined __USE_MISC)
  674. /* Create a new stream connected to a pipe running the given command.
  675. This function is a possible cancellation point and therefore not
  676. marked with __THROW. */
  677. extern FILE *popen (__const char *__command, __const char *__modes) __wur;
  678. /* Close a stream opened by popen and return the status of its child.
  679. This function is a possible cancellation point and therefore not
  680. marked with __THROW. */
  681. extern int pclose (FILE *__stream);
  682. #endif
  683. #ifdef __USE_POSIX
  684. /* Return the name of the controlling terminal. */
  685. extern char *ctermid (char *__s) __THROW;
  686. #endif /* Use POSIX. */
  687. #ifdef __USE_XOPEN
  688. /* Return the name of the current user. */
  689. extern char *cuserid (char *__s);
  690. #endif /* Use X/Open, but not issue 6. */
  691. #if 0 /* def __USE_GNU uClibc note: not supported */
  692. struct obstack; /* See <obstack.h>. */
  693. /* Write formatted output to an obstack. */
  694. extern int obstack_printf (struct obstack *__restrict __obstack,
  695. __const char *__restrict __format, ...)
  696. __THROW __attribute__ ((__format__ (__printf__, 2, 3)));
  697. extern int obstack_vprintf (struct obstack *__restrict __obstack,
  698. __const char *__restrict __format,
  699. __gnuc_va_list __args)
  700. __THROW __attribute__ ((__format__ (__printf__, 2, 0)));
  701. #endif /* Use GNU. */
  702. #if defined __USE_POSIX || defined __USE_MISC
  703. /* These are defined in POSIX.1:1996. */
  704. /* Acquire ownership of STREAM. */
  705. extern void flockfile (FILE *__stream) __THROW;
  706. /* Try to acquire ownership of STREAM but do not block if it is not
  707. possible. */
  708. extern int ftrylockfile (FILE *__stream) __THROW __wur;
  709. /* Relinquish the ownership granted for STREAM. */
  710. extern void funlockfile (FILE *__stream) __THROW;
  711. #endif /* POSIX || misc */
  712. #if defined __USE_XOPEN && !defined __USE_XOPEN2K && !defined __USE_GNU
  713. /* The X/Open standard requires some functions and variables to be
  714. declared here which do not belong into this header. But we have to
  715. follow. In GNU mode we don't do this nonsense. */
  716. # define __need_getopt
  717. # include <bits/getopt.h>
  718. #endif /* X/Open, but not issue 6 and not for GNU. */
  719. /* If we are compiling with optimizing read this file. It contains
  720. several optimizing inline functions and macros. */
  721. #define fgetc(_fp) __FGETC(_fp)
  722. #define fputc(_ch, _fp) __FPUTC(_ch, _fp)
  723. #ifdef __USE_MISC
  724. #define fgetc_unlocked(_fp) __FGETC_UNLOCKED(_fp)
  725. #define fputc_unlocked(_ch, _fp) __FPUTC_UNLOCKED(_ch, _fp)
  726. #endif
  727. #ifndef __STDIO_GETC_MACRO
  728. #define __stdin stdin
  729. #endif
  730. #define getchar() __GETC(__stdin)
  731. #ifndef __STDIO_PUTC_MACRO
  732. #define __stdout stdout
  733. #endif
  734. #define putchar(_ch) __PUTC((_ch), __stdout)
  735. #if defined __USE_POSIX || defined __USE_MISC
  736. #define getchar_unlocked() __GETC_UNLOCKED(__stdin)
  737. #define putchar_unlocked(_ch) __PUTC_UNLOCKED((_ch), __stdout)
  738. #endif
  739. /* Clear the error and EOF indicators for STREAM. */
  740. #define clearerr(_fp) __CLEARERR(_fp)
  741. #define feof(_fp) __FEOF(_fp)
  742. #define ferror(_fp) __FERROR(_fp)
  743. #ifdef __USE_MISC
  744. #define clearerr_unlocked(_fp) __CLEARERR_UNLOCKED(_fp)
  745. #define feof_unlocked(_fp) __FEOF_UNLOCKED(_fp)
  746. #define ferror_unlocked(_fp) __FERROR_UNLOCKED(_fp)
  747. #endif
  748. __END_DECLS
  749. #endif /* <stdio.h> included. */
  750. #endif /* !_STDIO_H */