mirror_frr/scripts/coccinelle/bool_function.cocci
Donatas Abraitis 17fe9bb6e5 tools: Add coccinelle script to check if bool functions return bool type
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
2020-03-04 15:02:23 +02:00

22 lines
133 B
Plaintext

@@
identifier fn;
typedef bool;
symbol false;
symbol true;
@@
bool fn ( ... )
{
<...
return
(
- 0
+ false
|
- 1
+ true
)
;
...>
}