]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/htonl.cocci
siphash24: introduce siphash24_compress_typesafe() macro
[thirdparty/systemd.git] / coccinelle / htonl.cocci
CommitLineData
64b92d63 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
8e38570e
LP
2@@
3expression s;
4@@
5- htonl(s)
6+ htobe32(s)
7@@
8expression s;
9@@
10- htons(s)
11+ htobe16(s)
12@@
13expression s;
14@@
15- ntohl(s)
16+ be32toh(s)
17@@
18expression s;
19@@
20- ntohs(s)
21+ be16toh(s)