Searched refs:lineptr (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/mail/
H A DpickFrom.c34 void pickFrom (lineptr)
35 register char *lineptr;
41 if (*lineptr == '>')
42 lineptr++;
43 lineptr += 5;
44 for (p = fromU; *lineptr; lineptr++) {
45 if (isspace (*lineptr))
47 *p++ = *lineptr;
51 while (*lineptr
[all...]
H A Dmail.h326 extern void pickFrom(char *lineptr);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dgetline.c39 #define LINESZ 128 /* initial guess for a NULL *lineptr */
42 getdelim(char **_RESTRICT_KYWD lineptr, size_t *_RESTRICT_KYWD n, argument
51 if (lineptr == NULL || n == NULL ||
57 if (*lineptr == NULL || *n < LINESZ) { /* initial allocation */
58 if ((*lineptr = realloc(*lineptr, LINESZ)) == NULL) {
64 ptr = *lineptr;
78 if ((ptr = realloc(*lineptr, 2 * size)) == NULL) {
80 ptr = *lineptr + size - 1;
85 *lineptr
102 getline(char **_RESTRICT_KYWD lineptr, size_t *_RESTRICT_KYWD n, FILE *_RESTRICT_KYWD iop) argument
[all...]
/illumos-gate/usr/src/cmd/captoinfo/
H A Dcaptoinfo.c1404 char *lineptr = line; local
1417 for (; *lineptr; lineptr++)
1418 if (!isspace(*lineptr))
1420 if (*lineptr == '\0')
1425 for (; *lineptr; lineptr++)
1426 if (*lineptr == '|' || *lineptr == ':') {
1427 *lineptr
[all...]
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c1281 char *lineptr, /* Pointer into line */ local
1386 lineptr = line;
1403 *lineptr++ = *bufptr++;
1408 *lineptr = '\0';

Completed in 74 milliseconds