summaryrefslogtreecommitdiffstats
path: root/tools/coccinelle/bool_function_type.cocci
blob: 71bf4f53b81bb60a91d36e08e67539a747be33fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@@
identifier fn;
typedef bool;
symbol false;
symbol true;
@@

- int
+ bool
fn (...)
{
?...
return
(
  true
|
  false
);
}