| 1415 | */ |
| 1416 | |
| 1417 | struct interval { |
| 1418 | int first; |
| 1419 | int last; |
| 1420 | }; |
| 1421 | |
| 1422 | /* auxiliary function for binary search in interval table */ |
| 1423 | static inline int bisearch(wchar_t ucs, const struct interval *table, int max) { |
nothing calls this directly
no outgoing calls
no test coverage detected