mirror of
https://github.com/git/git
synced 2024-10-30 14:03:28 +00:00
31 lines
218 B
Text
31 lines
218 B
Text
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||
|
@@
|
||
|
expression e;
|
||
|
statement s;
|
||
|
@@
|
||
|
if (
|
||
|
(
|
||
|
!e
|
||
|
|
|
||
|
- e == NULL
|
||
|
+ !e
|
||
|
)
|
||
|
)
|
||
|
{...}
|
||
|
else s
|
||
|
|
||
|
@@
|
||
|
expression e;
|
||
|
statement s;
|
||
|
@@
|
||
|
if (
|
||
|
(
|
||
|
e
|
||
|
|
|
||
|
- e != NULL
|
||
|
+ e
|
||
|
)
|
||
|
)
|
||
|
{...}
|
||
|
else s
|