blob: 2679fd2264969651234f82c805fc5c5f757b4823 [file]
<html lang="en">
<head>
<title>isspace - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Ctype.html#Ctype" title="Ctype">
<link rel="prev" href="ispunct.html#ispunct" title="ispunct">
<link rel="next" href="isupper.html#isupper" title="isupper">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="isspace"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="isupper.html#isupper">isupper</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="ispunct.html#ispunct">ispunct</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Ctype.html#Ctype">Ctype</a>
<hr>
</div>
<h3 class="section">3.9 <code>isspace</code>&mdash;whitespace character predicate</h3>
<p><a name="index-isspace-119"></a><strong>Synopsis</strong>
<pre class="example"> #include &lt;ctype.h&gt;
int isspace(int <var>c</var>);
</pre>
<p><strong>Description</strong><br>
<code>isspace</code> is a macro which classifies ASCII integer values by table
lookup. It is a predicate returning non-zero for whitespace
characters, and 0 for other characters. It is defined only when <code>isascii</code>(<var>c</var>) is true or <var>c</var> is EOF.
<p>You can use a compiled subroutine instead of the macro definition by
undefining the macro using `<code>#undef isspace</code>'.
<p><br>
<strong>Returns</strong><br>
<code>isspace</code> returns non-zero if <var>c</var> is a space, tab, carriage return, new
line, vertical tab, or formfeed (<code>0x09</code>&ndash;<code>0x0D</code>, <code>0x20</code>).
<p><br>
<strong>Portability</strong><br>
<code>isspace</code> is ANSI C.
<p>No supporting OS subroutines are required.
<p><br>
</body></html>