Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

106 lines
4.1KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>fpurge (The Red Hat newlib C Library)</title>
  7. <meta name="description" content="fpurge (The Red Hat newlib C Library)">
  8. <meta name="keywords" content="fpurge (The Red Hat newlib C Library)">
  9. <meta name="resource-type" content="document">
  10. <meta name="distribution" content="global">
  11. <meta name="Generator" content="makeinfo">
  12. <link href="index.html#Top" rel="start" title="Top">
  13. <link href="Document-Index.html#Document-Index" rel="index" title="Document Index">
  14. <link href="Document-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
  15. <link href="Stdio.html#Stdio" rel="up" title="Stdio">
  16. <link href="fputc.html#fputc" rel="next" title="fputc">
  17. <link href="fopencookie.html#fopencookie" rel="prev" title="fopencookie">
  18. <style type="text/css">
  19. <!--
  20. a.summary-letter {text-decoration: none}
  21. blockquote.indentedblock {margin-right: 0em}
  22. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  23. blockquote.smallquotation {font-size: smaller}
  24. div.display {margin-left: 3.2em}
  25. div.example {margin-left: 3.2em}
  26. div.lisp {margin-left: 3.2em}
  27. div.smalldisplay {margin-left: 3.2em}
  28. div.smallexample {margin-left: 3.2em}
  29. div.smalllisp {margin-left: 3.2em}
  30. kbd {font-style: oblique}
  31. pre.display {font-family: inherit}
  32. pre.format {font-family: inherit}
  33. pre.menu-comment {font-family: serif}
  34. pre.menu-preformatted {font-family: serif}
  35. pre.smalldisplay {font-family: inherit; font-size: smaller}
  36. pre.smallexample {font-size: smaller}
  37. pre.smallformat {font-family: inherit; font-size: smaller}
  38. pre.smalllisp {font-size: smaller}
  39. span.nolinebreak {white-space: nowrap}
  40. span.roman {font-family: initial; font-weight: normal}
  41. span.sansserif {font-family: sans-serif; font-weight: normal}
  42. ul.no-bullet {list-style: none}
  43. -->
  44. </style>
  45. </head>
  46. <body lang="en">
  47. <a name="fpurge"></a>
  48. <div class="header">
  49. <p>
  50. Next: <a href="fputc.html#fputc" accesskey="n" rel="next">fputc</a>, Previous: <a href="fopencookie.html#fopencookie" accesskey="p" rel="prev">fopencookie</a>, Up: <a href="Stdio.html#Stdio" accesskey="u" rel="up">Stdio</a> &nbsp; [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
  51. </div>
  52. <hr>
  53. <a name="fpurge_002d_002d_002ddiscard-pending-file-I_002fO"></a>
  54. <h3 class="section">4.19 <code>fpurge</code>&mdash;discard pending file I/O</h3>
  55. <a name="index-fpurge"></a>
  56. <a name="index-_005ffpurge_005fr"></a>
  57. <a name="index-_005f_005ffpurge"></a>
  58. <p><strong>Synopsis</strong>
  59. </p><div class="example">
  60. <pre class="example">#include &lt;stdio.h&gt;
  61. int fpurge(FILE *<var>fp</var>);
  62. int _fpurge_r(struct _reent *<var>reent</var>, FILE *<var>fp</var>);
  63. #include &lt;stdio.h&gt;
  64. #include &lt;stdio_ext.h&gt;
  65. void __fpurge(FILE *<var>fp</var>);
  66. </pre></div>
  67. <p><strong>Description</strong><br>
  68. Use <code>fpurge</code> to clear all buffers of the given stream. For output
  69. streams, this discards data not yet written to disk. For input streams,
  70. this discards any data from <code>ungetc</code> and any data retrieved from disk
  71. but not yet read via <code>getc</code>. This is more severe than <code>fflush</code>,
  72. and generally is only needed when manually altering the underlying file
  73. descriptor of a stream.
  74. </p>
  75. <p><code>__fpurge</code> behaves exactly like <code>fpurge</code> but does not return a value.
  76. </p>
  77. <p>The alternate function <code>_fpurge_r</code> is a reentrant version, where the
  78. extra argument <var>reent</var> is a pointer to a reentrancy structure, and
  79. <var>fp</var> must not be NULL.
  80. </p>
  81. <br>
  82. <p><strong>Returns</strong><br>
  83. <code>fpurge</code> returns <code>0</code> unless <var>fp</var> is not valid, in which case it
  84. returns <code>EOF</code> and sets <code>errno</code>.
  85. </p>
  86. <br>
  87. <p><strong>Portability</strong><br>
  88. These functions are not portable to any standard.
  89. </p>
  90. <p>No supporting OS subroutines are required.
  91. </p>
  92. <br>
  93. </body>
  94. </html>