📄 getc.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><html><head><!-- Copyright 1997 The Open Group, All Rights Reserved --><title>getc</title></head><body bgcolor=white><center><font size=2>The Single UNIX ® Specification, Version 2<br>Copyright © 1997 The Open Group</font></center><hr size=2 noshade><h4><a name = "tag_000_005_443"> </a>NAME</h4><blockquote>getc - get a byte from a stream</blockquote><h4><a name = "tag_000_005_444"> </a>SYNOPSIS</h4><blockquote><pre><code>#include <<a href="stdio.h.html">stdio.h</a>>int getc(FILE *<i>stream</i>);</code></pre></blockquote><h4><a name = "tag_000_005_445"> </a>DESCRIPTION</h4><blockquote>The<i>getc()</i>function is equivalent to<i><a href="fgetc.html">fgetc()</a></i>,except that if it is implemented as a macro it may evaluate<i>stream</i>more than once, so the argument should never be an expressionwith side effects.</blockquote><h4><a name = "tag_000_005_446"> </a>RETURN VALUE</h4><blockquote>Refer to<i><a href="fgetc.html">fgetc()</a></i>.</blockquote><h4><a name = "tag_000_005_447"> </a>ERRORS</h4><blockquote>Refer to<i><a href="fgetc.html">fgetc()</a></i>.</blockquote><h4><a name = "tag_000_005_448"> </a>EXAMPLES</h4><blockquote>None.</blockquote><h4><a name = "tag_000_005_449"> </a>APPLICATION USAGE</h4><blockquote>If the integer value returned by<i>getc()</i>is stored into a variable of type<b>char</b>and then compared againstthe integer constant EOF,the comparison may never succeed,because sign-extension of a variable of type<b>char</b>on widening to integer is implementation-dependent.<p>Because it may be implemented as a macro,<i>getc()</i>may treat incorrectly a<i>stream</i>argument with side effects. In particular,<i>getc</i>(*<i>f</i>++)will not necessarily work as expected.Therefore, use of this function should be preceded by "#undef getc" in such situations; <i><a href="fgetc.html">fgetc()</a></i>could also be used.</blockquote><h4><a name = "tag_000_005_450"> </a>FUTURE DIRECTIONS</h4><blockquote>None.</blockquote><h4><a name = "tag_000_005_451"> </a>SEE ALSO</h4><blockquote><i><a href="fgetc.html">fgetc()</a></i>,<i><a href="stdio.h.html"><stdio.h></a></i>.</blockquote><h4>DERIVATION</h4><blockquote>Derived from Issue 1 of the SVID.</blockquote><hr size=2 noshade><center><font size=2>UNIX ® is a registered Trademark of The Open Group.<br>Copyright © 1997 The Open Group<br> [ <a href="../index.html">Main Index</a> | <a href="../xshix.html">XSH</a> | <a href="../xcuix.html">XCU</a> | <a href="../xbdix.html">XBD</a> | <a href="../cursesix.html">XCURSES</a> | <a href="../xnsix.html">XNS</a> ]</font></center><hr size=2 noshade></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -