mempcpy.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/mempcpy.c
blob: c23ca69eddddd400e4cb8deb29022bf7d2d2d175 (plain) (blame)
1
2
3
4
5
6
#include <string.h>
void *mempcpy(void *dest, const void *src, size_t n)
{
	return (char *)memcpy(dest, src, n) + n;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月06日 10:00:31 +0000

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