mirror_frr/scripts/coccinelle/bool_assignment.cocci
Donatas Abraitis a5f6e69b14 tools: Coccinelle script to convert 0/1 to false/true if variable type is bool
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
2020-03-04 18:47:09 +02:00

14 lines
54 B
Plaintext

@@
bool b;
@@
(
b =
- 0
+ false
|
b =
- 1
+ true
)