Lines Matching refs:list
16 * notice, this list of conditions and the following disclaimer.
18 * notice, this list of conditions and the following disclaimer in the
55 lookup(const char *str, const char *list)
61 while (*list != '\0') {
62 while (*list == ',')
63 ++list;
64 if ((next = strchr(list, ',')) == NULL)
65 next = strchr(list, '\0');
66 if (next - list == (ptrdiff_t)len &&
67 strncmp(list, str, len) == 0)
69 list = next;
85 /* get list of guest logins */
89 /* check if the target account is on the list */