Lines Matching defs:names
44 * 3. Neither the name of the University nor the names of its contributors
173 lsadd(lsentry_t **names, const char *pattern, const char *name, size_t namelen,
192 for (np = names; *np; np = &(*np)->e_next) {
201 lsprint(lsentry_t *names) {
202 if (!names) {
207 lsentry_t *n = names;
209 names = n->e_next;
210 } while (names);
214 lsfree(lsentry_t *names) {
215 if (!names)
218 lsentry_t *n = names;
219 names = n->e_next;
221 } while (names);