summaryrefslogtreecommitdiff
path: root/coccinelle/isempty.cocci
blob: 1374ee40d75f5f953183bf02f5e7b3304f300d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@@
expression s;
@@
- strv_length(s) == 0
+ strv_isempty(s)
@@
expression s;
@@
- strlen(s) == 0
+ isempty(s)
@@
expression s;
@@
- strlen_ptr(s) == 0
+ isempty(s)