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: a297985e6853a38e254f762a80b11838eeb71fb8 (plain) (blame)
1
2
3
4
5
6
7
#define _GNU_SOURCE
#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年09月05日 21:57:56 +0000

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