DIR:/proc/thread-self/root/usr/share/doc/git/contrib/coccinelle/ |
Current File : //proc/thread-self/root/usr/share/doc/git/contrib/coccinelle/equals-null.cocci |
/* 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 |