frr/tools/coccinelle/bool_function.cocci

22 lines
133 B
Text
Raw Normal View History

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