Lines Matching defs:ln
34 struct ln {
35 struct ln *next;
46 #define CHAR_TBL_START static struct ln lines[LINES_MAX] = {
52 struct ln **htab;
55 static const struct ln *find(const struct mchars *,
71 struct ln **htab;
72 struct ln *pp;
82 htab = mandoc_calloc(PRINT_HI - PRINT_LO + 1, sizeof(struct ln *));
104 const struct ln *ln;
106 ln = find(arg, p, sz);
107 return(ln != NULL ? ln->unicode : sz == 1 ? (unsigned char)*p : -1);
133 const struct ln *ln;
135 ln = find(arg, p, sz);
136 if (ln == NULL) {
141 *rsz = strlen(ln->ascii);
142 return(ln->ascii);
156 static const struct ln *
159 const struct ln *pp;