Lines Matching refs:outopts
63 ascii_init(enum termenc enc, const struct manoutput *outopts) in ascii_init() argument
126 if (outopts->mdoc) in ascii_init()
128 if (outopts->indent) in ascii_init()
129 p->defindent = outopts->indent; in ascii_init()
130 if (outopts->width) in ascii_init()
131 p->defrmargin = outopts->width; in ascii_init()
132 if (outopts->synopsisonly) in ascii_init()
141 ascii_alloc(const struct manoutput *outopts) in ascii_alloc() argument
144 return ascii_init(TERMENC_ASCII, outopts); in ascii_alloc()
148 utf8_alloc(const struct manoutput *outopts) in utf8_alloc() argument
151 return ascii_init(TERMENC_UTF8, outopts); in utf8_alloc()
155 locale_alloc(const struct manoutput *outopts) in locale_alloc() argument
158 return ascii_init(TERMENC_LOCALE, outopts); in locale_alloc()