/* from openssh 4.3p2 compat/strlcpy.c */1/*2* Copyright (c) 1998 Todd C. Miller <[email protected]>3*4* Permission to use, copy, modify, and distribute this software for any5* purpose with or without fee is hereby granted, provided that the above6* copyright notice and this permission notice appear in all copies.7*8* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES9* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF10* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR11* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES12* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN13* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF14* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.15*/1617/* OPENBSD ORIGINAL: lib/libc/string/strlcpy.c */1819#include <ldns/config.h>20#ifndef HAVE_STRLCPY2122#include <sys/types.h>23#include <string.h>2425/*26* Copy src to string dst of size siz. At most siz-1 characters27* will be copied. Always NUL terminates (unless siz == 0).28* Returns strlen(src); if retval >= siz, truncation occurred.29*/30size_t31strlcpy(char *dst, const char *src, size_t siz)32{33char *d = dst;34const char *s = src;35size_t n = siz;3637/* Copy as many bytes as will fit */38if (n != 0 && --n != 0) {39do {40if ((*d++ = *s++) == 0)41break;42} while (--n != 0);43}4445/* Not enough room in dst, add NUL and traverse rest of src */46if (n == 0) {47if (siz != 0)48*d = '\0'; /* NUL-terminate dst */49while (*s++)50;51}5253return(s - src - 1); /* count does not include NUL */54}5556#endif /* !HAVE_STRLCPY */575859