1:255.13-alt1
[systemd_ALT.git] / coccinelle / const-strlen.disabled
blob8b1a635274c5a6c19767b22793850295ab0916e5
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 @@
3 constant s;
4 @@
6 #define STRLEN
8 - sizeof(s)-1
9 + STRLEN(s)
12 constant s;
14 - strlen(s)
15 + STRLEN(s)