Lines Matching +defs:main +defs:table
53 * + added table shows when a character is not part of Unicode.
144 /* auxiliary function for binary search in interval table */
145 static int bisearch(unsigned long ucs, const struct interval *table, int max)
148 if (ucs >= table[0].first && ucs <= table[max].last) {
155 if (ucs > table[mid].last)
157 else if (ucs < table[mid].first)
677 #define Lookup(cmp, table) \
678 bisearch(cmp, table, \
679 (int) (sizeof(table) / sizeof(struct interval) - 1))
692 /* binary search in table of non-spacing characters */
823 /* binary search in table of non-spacing characters */
925 int main(int argc, char **argv)