| 1569 | } |
| 1570 | |
| 1571 | void build_flags_tables(FILE *f) |
| 1572 | { |
| 1573 | build_prop_table(f, PROP_Cased1, true); |
| 1574 | build_prop_table(f, PROP_Case_Ignorable, true); |
| 1575 | build_prop_table(f, PROP_ID_Start, true); |
| 1576 | build_prop_table(f, PROP_ID_Continue1, true); |
| 1577 | build_prop_table(f, PROP_White_Space, true); |
| 1578 | } |
| 1579 | |
| 1580 | void dump_name_table(FILE *f, const char *cname, const char **tab_name, int len, |
| 1581 | const char **tab_short_name) |
no test coverage detected