repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
const-strlen.disabled
blob
8b1a635274c5a6c19767b22793850295ab0916e5
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
constant s;
4
@@
5
(
6
#define STRLEN
7
&
8
- sizeof(s)-1
9
+ STRLEN(s)
10
)
11
@@
12
constant s;
13
@@
14
- strlen(s)
15
+ STRLEN(s)