Lines Matching defs:line
49 static char line[BUFSIZ+1];
74 /* get the next line in the password file */
75 i = read(pwf, line, BUFSIZ);
77 if (line[j] == '\n')
82 line[++j] = 0; /* terminate the line */
83 /* point at the next line */
85 p = passwdfield(line); /* get the logname */
86 } while (*name != *line || /* fast pretest */
87 strcmp(name, line) != 0);