Searched defs:wline (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/valtools/
H A Dckitem.c134 wchar_t wline[LSIZE], wtemp[LSIZE]; local
263 while (fgetws(wline, LSIZE, fp)) {
268 if (*wline == L'#')
270 n = wcslen(wline);
271 if ((n != 0) && (wline[n - 1] == L'\n'))
272 wline[n - 1] = L'\0';
277 if (iswspace(*wline)) {
279 (void) wcscat(wtemp, wline);
296 (void) wcscpy(wtemp, wline);
/illumos-gate/usr/src/cmd/mail/
H A Dgethead.c70 char *wline; local
82 wline = wlineval;
117 if (fgets(wline, MAXHDRSIZE, file) == NULL) {
122 if ((rc = strncmp(wline, header[H_FROM].tag, 5)) != SAME) {
129 for (rc = 5; wline[rc] == ' ' || wline[rc] == '\t'; ++rc)
131 (void) strlcpy(hold, wline + rc, MAXHDRSIZE);
132 fgets(wline, MAXHDRSIZE, file);
134 while (((rc = strncmp(wline,
136 (substr(wline, "remot
[all...]

Completed in 347 milliseconds