swab.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/swab.c
blob: ace0f4666dd613d58bcf2c93cfd70b37d3f3ae28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
void swab(const void *restrict _src, void *restrict _dest, ssize_t n)
{
	const char *src = _src;
	char *dest = _dest;
	for (; n>1; n-=2) {
		dest[0] = src[1];
		dest[1] = src[0];
		dest += 2;
		src += 2;
	}
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 06:46:35 +0000

AltStyle によって変換されたページ (->オリジナル) /