Systemd/coccinelle/swap-two.cocci

8 lines
71 B
Plaintext

@@
expression x, y, z;
@@
- z = x;
- x = y;
- y = z;
+ SWAP_TWO(x, y);