Lines Matching refs:hold
68 char *hold; in gethead() local
81 hold = holdval; in gethead()
131 (void) strlcpy(hold, wline + rc, MAXHDRSIZE); in gethead()
137 (void) strlcpy(hold, wline + 6, MAXHDRSIZE); in gethead()
146 sender_size = strcspn(hold, " \t"); in gethead()
148 if ((uucpptr = strrchr(hold, '!')) != NULL) { in gethead()
149 uucpstart = uucpptr - hold + 1; in gethead()
157 hold[rc] != ' ' && hold[rc] != '\t' && in gethead()
159 userval[ix++] = hold[rc]; in gethead()
171 for (; hold[rc] != '\0' && hold[rc] != ' ' && in gethead()
172 hold[rc] != '\t'; ++rc) in gethead()
174 for (; hold[rc] == ' ' || hold[rc] == '\t'; ++rc) in gethead()
178 (void) strlcpy(wline, hold + rc, MAXHDRSIZE); in gethead()