Lines Matching refs:pend
40 manconf_parse(struct manconf *conf, const char *file, char *pend, char *pbeg) in manconf_parse() argument
47 if (pend != NULL && *pend != '\0') { in manconf_parse()
49 manpath_parseline(&conf->manpath, pend, 'M'); in manconf_parse()
51 pbeg = pend = NULL; in manconf_parse()
54 pbeg = pend = NULL; in manconf_parse()
57 pend = pbeg + 1; in manconf_parse()
59 } else if ((pend = strstr(pbeg, "::")) != NULL) { in manconf_parse()
61 *pend = '\0'; in manconf_parse()
62 pend += 2; in manconf_parse()
65 pend = NULL; in manconf_parse()
69 pend = NULL; in manconf_parse()
78 manpath_parseline(&conf->manpath, pend, '\0'); in manconf_parse()