Lines Matching refs:dstsize
289 * Copy a string, lowercasing it as we go. Here dstsize is the size of
293 istrcpy(char *dst, int dstsize, char *src)
300 while (--dstsize > 0 && *cp != '\0')
771 * Copies src to the dstsize buffer at dst. The copy will never
776 nstrcpy(char *dst, int dstsize, char *src)
783 while (--dstsize > 0 && *cp != '\0')
790 * Appends src to the dstsize buffer at dst. The append will never
795 nstrcat(char *dst, int dstsize, char *src)
804 dstsize--;
806 while (--dstsize > 0 && *cp != '\0')