Searched defs:begin (Results 1 - 3 of 3) sorted by relevance
/sendmail/sendmail/ |
H A D | headers.c | 2276 char *begin = h->h_value; local 2281 if (begin == NULL || *begin == '\0') 2286 while ((end = find_character(begin, ';')) != NULL) 2293 len = strlen(begin); 2296 if (shorten_rfc822_string(begin, MaxMimeFieldLength)) 2316 bp = begin + strlen(begin); 2335 begin = end + 1;
|
H A D | util.c | 2215 char *begin, *end; local 2233 begin = line; 2237 while (*begin != '\0' && isascii(*begin) && isspace(*begin)) 2238 begin++; 2243 if ((begin = strpbrk(begin, delimbuf)) == NULL) 2245 begin++; 2248 while (*begin ! [all...] |
H A D | conf.c | 5384 char *begin, *end; local 5480 begin = newstring; 5482 while (*begin != '\0' && 5483 (strlen(begin) + idlen) > SYSLOG_BUFSIZE) 5492 end = begin + SYSLOG_BUFSIZE - idlen - SL_SPLIT; 5493 while (end > begin) 5504 if (end == begin) 5505 end = begin + SYSLOG_BUFSIZE - idlen - SL_SPLIT; 5510 sm_dprintf("%s[%d]: %s ...\n", id, seq++, begin); 5512 syslog(level, "%s[%d]: %s ...", id, seq++, begin); [all...] |
Completed in 48 milliseconds