Searched defs:dst (Results 1 - 4 of 4) sorted by relevance

/sendmail/libsm/
H A Dstrl.c34 ** string src to dst, nul terminating the result. If size == 0,
35 ** the dst buffer is not modified.
49 ** dst -- destination buffer
58 sm_strlcpy(dst, src, size)
59 register char *dst;
67 for (i = 0; i < size && (dst[i] = src[i]) != 0; i++)
69 dst[i] = '\0';
80 ** If strlen(dst) < size, then append at most size - strlen(dst) - 1
82 ** nul terminating the result. Otherwise, dst i
212 sm_strlcpyn(char *dst, ssize_t len, int n, ...) argument
[all...]
/sendmail/sendmail/
H A Dconf.c5652 int src = -1, dst = -1; local
5674 dst = safeopen((char *)target, O_CREAT|O_EXCL|O_WRONLY,
5676 if (dst < 0)
5686 (writelen = write(dst, p, (size_t) left)) >= 0)
5708 if (close(dst) < 0)
5710 /* don't set dst = -1 here so we unlink the file */
5721 if (dst >= 0)
5724 (void) close(dst);
H A Dmap.c7401 char *dst; local
7405 dst = result;
7407 *dst++ = hex_digits[src[i] & 0x0f];
7408 *dst++ = '.';
7409 *dst++ = hex_digits[(src[i] >> 4) & 0x0f];
7411 *dst++ = '.';
H A Dqueue.c4069 struct stat dst; local
4079 if (stat(delim == '\0' ? "." : qf, &dst) < 0)
4085 bitset(S_IWGRP, dst.st_mode) &&
4086 dst.st_gid == st.st_gid);

Completed in 699 milliseconds