Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
302 B
15 lines
302 B
10 months ago
|
// !x&y combines boolean negation with bitwise and
|
||
|
//
|
||
|
// Confidence: High
|
||
|
// Copyright: (C) Gilles Muller, Julia Lawall, EMN, INRIA, DIKU. GPLv2.
|
||
|
// URL: https://coccinelle.gitlabpages.inria.fr/website/rules/notand.html
|
||
|
// Options:
|
||
|
|
||
|
@@ expression E; constant C; @@
|
||
|
(
|
||
|
!E & !C
|
||
|
|
|
||
|
- !E & C
|
||
|
+ !(E & C)
|
||
|
)
|