strncpy.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/strncpy.c
blob: c0cd7974e1275b6c51b83fa637cb369dd2f3a871 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <string.h>
char *__stpncpy(char *, const char *, size_t);
char *strncpy(char *d, const char *s, size_t n)
{
	__stpncpy(d, s, n);
	return d;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月08日 00:02:25 +0000

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