Lines Matching refs:ln
36 struct ln { struct
46 static struct ln lines[] = { argument
444 mandoc_ohash_init(&mchars, 9, offsetof(struct ln, roffcode)); in mchars_alloc()
455 const struct ln *ln; in mchars_spec2cp() local
459 ln = ohash_find(&mchars, ohash_qlookupi(&mchars, p, &end)); in mchars_spec2cp()
460 return ln != NULL ? ln->unicode : -1; in mchars_spec2cp()
485 const struct ln *ln; in mchars_spec2str() local
489 ln = ohash_find(&mchars, ohash_qlookupi(&mchars, p, &end)); in mchars_spec2str()
490 if (ln == NULL) in mchars_spec2str()
493 *rsz = strlen(ln->ascii); in mchars_spec2str()
494 return ln->ascii; in mchars_spec2str()