Lines Matching refs:man
48 #include "man.h"
325 * and for a man(1) section argument without -s.
353 /* man(1), whatis(1), apropos(1) */
394 * For standard man(1) and -a output mode,
432 * For man(1), -a and -i output mode, fall through
608 fputs("usage: man [-acfhklw] [-C file] [-I os=name] "
639 mandoc_asprintf(&file, "%s/man%s/%s.%s",
654 mandoc_asprintf(&file, "%s/man%s/%s/%s.%s",
661 mandoc_asprintf(&file, "%s/man%s/%s.[01-9]*",
729 struct roff_man *man;
777 mparse_result(curp->mp, &man, NULL);
781 if (man == NULL)
783 if (man->macroset == MACROSET_MDOC) {
784 mdoc_validate(man);
787 html_mdoc(curp->outdata, man);
790 tree_mdoc(curp->outdata, man);
793 man_mdoc(curp->outdata, man);
800 terminal_mdoc(curp->outdata, man);
806 if (man->macroset == MACROSET_MAN) {
807 man_validate(man);
810 html_man(curp->outdata, man);
813 tree_man(curp->outdata, man);
816 man_man(curp->outdata, man);
823 terminal_man(curp->outdata, man);
943 else if (0 == strcmp(arg, "man"))