Home | History | Annotate | Download | only in dropbear

Lines Matching refs:siz

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)).
124 * If retval >= siz, truncation occurred.
127 strlcat(dst, src, siz)
130 size_t siz;
134 register size_t n = siz;
141 n = siz - dlen;