source: public/doc/gnu-c/Swallowing-the-Semicolon.html@ 02598c2

Last change on this file since 02598c2 was 02598c2, checked in by Mikhail Kirillov <w96k@…>, on Oct 6, 2022 at 12:36:29 PM

Add gnu-c

  • Property mode set to 100644
File size: 5.8 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<!-- Copyright (C) 2022 Richard Stallman and Free Software Foundation, Inc.
4
5(The work of Trevis Rothwell and Nelson Beebe has been assigned or
6licensed to the FSF.)
7
8Permission is granted to copy, distribute and/or modify this document
9under the terms of the GNU Free Documentation License, Version 1.3 or
10any later version published by the Free Software Foundation; with the
11Invariant Sections being "GNU General Public License," with the
12Front-Cover Texts being "A GNU Manual," and with the Back-Cover
13Texts as in (a) below. A copy of the license is included in the
14section entitled "GNU Free Documentation License."
15
16(a) The FSF's Back-Cover Text is: "You have the freedom to copy and
17modify this GNU manual. Buying copies from the FSF supports it in
18developing GNU and promoting software freedom." -->
19<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
20<head>
21<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
22<title>Swallowing the Semicolon (GNU C Language Manual)</title>
23
24<meta name="description" content="Swallowing the Semicolon (GNU C Language Manual)">
25<meta name="keywords" content="Swallowing the Semicolon (GNU C Language Manual)">
26<meta name="resource-type" content="document">
27<meta name="distribution" content="global">
28<meta name="Generator" content="makeinfo">
29<link href="index.html" rel="start" title="Top">
30<link href="Symbol-Index.html" rel="index" title="Symbol Index">
31<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
32<link href="Macro-Pitfalls.html" rel="up" title="Macro Pitfalls">
33<link href="Duplication-of-Side-Effects.html" rel="next" title="Duplication of Side Effects">
34<link href="Operator-Precedence-Problems.html" rel="prev" title="Operator Precedence Problems">
35<style type="text/css">
36<!--
37a.summary-letter {text-decoration: none}
38blockquote.indentedblock {margin-right: 0em}
39div.display {margin-left: 3.2em}
40div.example {margin-left: 3.2em}
41div.lisp {margin-left: 3.2em}
42kbd {font-style: oblique}
43pre.display {font-family: inherit}
44pre.format {font-family: inherit}
45pre.menu-comment {font-family: serif}
46pre.menu-preformatted {font-family: serif}
47span.nolinebreak {white-space: nowrap}
48span.roman {font-family: initial; font-weight: normal}
49span.sansserif {font-family: sans-serif; font-weight: normal}
50ul.no-bullet {list-style: none}
51-->
52</style>
53
54
55</head>
56
57<body lang="en">
58<span id="Swallowing-the-Semicolon"></span><div class="header">
59<p>
60Next: <a href="Duplication-of-Side-Effects.html" accesskey="n" rel="next">Duplication of Side Effects</a>, Previous: <a href="Operator-Precedence-Problems.html" accesskey="p" rel="prev">Operator Precedence Problems</a>, Up: <a href="Macro-Pitfalls.html" accesskey="u" rel="up">Macro Pitfalls</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Symbol-Index.html" title="Index" rel="index">Index</a>]</p>
61</div>
62<hr>
63<span id="Swallowing-the-Semicolon-1"></span><h4 class="subsubsection">26.5.10.3 Swallowing the Semicolon</h4>
64<span id="index-semicolons-_0028after-macro-calls_0029"></span>
65
66<p>Often it is desirable to define a macro that expands into a compound
67statement. Consider, for example, the following macro, that advances a
68pointer (the parameter <code>p</code> says where to find it) across whitespace
69characters:
70</p>
71<div class="example">
72<pre class="example">#define SKIP_SPACES(p, limit) \
73{ char *lim = (limit); \
74 while (p &lt; lim) { \
75 if (*p++ != ' ') { \
76 p--; break; }}}
77</pre></div>
78
79<p>Here backslash-newline is used to split the macro definition, which must
80be a single logical line, so that it resembles the way such code would
81be laid out if not part of a macro definition.
82</p>
83<p>A call to this macro might be <code>SKIP_SPACES (p, lim)</code>. Strictly
84speaking, the call expands to a compound statement, which is a complete
85statement with no need for a semicolon to end it. However, since it
86looks like a function call, it minimizes confusion if you can use it
87like a function call, writing a semicolon afterward, as in
88<code>SKIP_SPACES (p, lim);</code>
89</p>
90<p>This can cause trouble before <code>else</code> statements, because the
91semicolon is actually a null statement. Suppose you write
92</p>
93<div class="example">
94<pre class="example">if (*p != 0)
95 SKIP_SPACES (p, lim);
96else /* <span class="roman">&hellip;</span> */
97</pre></div>
98
99<p>The presence of two statements&mdash;the compound statement and a null
100statement&mdash;in between the <code>if</code> condition and the <code>else</code>
101makes invalid C code.
102</p>
103<p>The definition of the macro <code>SKIP_SPACES</code> can be altered to solve
104this problem, using a <code>do <span class="roman">&hellip;</span> while</code> statement. Here is how:
105</p>
106<div class="example">
107<pre class="example">#define SKIP_SPACES(p, limit) \
108do { char *lim = (limit); \
109 while (p &lt; lim) { \
110 if (*p++ != ' ') { \
111 p--; break; }}} \
112while (0)
113</pre></div>
114
115<p>Now <code>SKIP_SPACES (p, lim);</code> expands into
116</p>
117<div class="example">
118<pre class="example">do { /* <span class="roman">&hellip;</span> */ } while (0);
119</pre></div>
120
121<p>which is one statement. The loop executes exactly once; most compilers
122generate no extra code for it.
123</p>
124<hr>
125<div class="header">
126<p>
127Next: <a href="Duplication-of-Side-Effects.html" accesskey="n" rel="next">Duplication of Side Effects</a>, Previous: <a href="Operator-Precedence-Problems.html" accesskey="p" rel="prev">Operator Precedence Problems</a>, Up: <a href="Macro-Pitfalls.html" accesskey="u" rel="up">Macro Pitfalls</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Symbol-Index.html" title="Index" rel="index">Index</a>]</p>
128</div>
129
130
131
132</body>
133</html>
Note: See TracBrowser for help on using the repository browser.