23#if defined(LIBC_SCCS) && !defined(lint)
24static char *rcsid =
"$OpenBSD: strlcpy.c,v 1.8 2003/06/17 21:56:24 millert Exp $";
30# include <sys/types.h>
42 register char *
d = dst;
43 register const char *s =
src;
44 register size_t n = siz;
47 if (
n != 0 && --
n != 0) {
49 if ((*
d++ = *s++) == 0)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
size_t strlcpy(char *dst, const char *src, size_t siz)