Lines Matching refs:dst
93 size_t strlcpy(char *dst, const char *src, size_t size) {
106 dst[i] = src[i];
110 dst[i] = '\0';
120 * Appends src to string dst of size siz (unlike strncat, siz is the
121 * full size of dst, not space left). At most siz-1 characters
122 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
123 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
127 strlcat(dst, src, siz)
128 char *dst;
132 register char *d = dst;
137 /* Find the end of dst and adjust bytes left but don't go past end */
140 dlen = d - dst;