Loading src/common/strlcat.c +1 −4 Original line number Diff line number Diff line Loading @@ -42,10 +42,7 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp * If retval >= siz, truncation occurred. */ size_t strlcat(dst, src, siz) char *dst; const char *src; size_t siz; strlcat(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; Loading src/common/strlcpy.c +1 −4 Original line number Diff line number Diff line Loading @@ -40,10 +40,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ size_t strlcpy(dst, src, siz) char *dst; const char *src; size_t siz; size_t strlcpy(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; Loading Loading
src/common/strlcat.c +1 −4 Original line number Diff line number Diff line Loading @@ -42,10 +42,7 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp * If retval >= siz, truncation occurred. */ size_t strlcat(dst, src, siz) char *dst; const char *src; size_t siz; strlcat(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; Loading
src/common/strlcpy.c +1 −4 Original line number Diff line number Diff line Loading @@ -40,10 +40,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ size_t strlcpy(dst, src, siz) char *dst; const char *src; size_t siz; size_t strlcpy(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; Loading