summaryrefslogtreecommitdiff
path: root/coccinelle/const-strlen.disabled
blob: 30a6e5a88ed80308e9a4ffcb27e310a0dbdb6310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@@
constant s;
@@
(
#define STRLEN
&
- sizeof(s)-1
+ STRLEN(s)
)
@@
constant s;
@@
- strlen(s)
+ STRLEN(s)