summaryrefslogtreecommitdiff
path: root/admin/coccinelle/unibyte_string.cocci
blob: 97f87e5a4ca05c180ef9dd7840bec46117797412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// make_unibyte_string (str, strlen (str)) -> build_unibyte_string (str)
@@
identifier I;
@@
- make_unibyte_string (I, strlen (I))
+ build_unibyte_string (I)

@@
constant C;
@@
- make_unibyte_string (C, strlen (C))
+ build_unibyte_string (C)