Exemple #1
0
static int
termp_ll_pre(DECL_ARGS)
{

	term_setwidth(p, n->nchild ? n->child->string : NULL);
	return(0);
}
Exemple #2
0
static int
pre_ll(DECL_ARGS)
{

	term_setwidth(p, n->child != NULL ? n->child->string : NULL);
	return 0;
}
Exemple #3
0
static void
roff_term_pre_ll(ROFF_TERM_ARGS)
{
	term_setwidth(p, n->child != NULL ? n->child->string : NULL);
}