[use-table] Add a main() to print categories
This commit is contained in:
parent
9aaa835ac1
commit
0788f77371
|
@ -497,6 +497,26 @@ for k,v in sorted(use_positions.items()):
|
||||||
tag = k + suf
|
tag = k + suf
|
||||||
print ("#undef %s" % tag)
|
print ("#undef %s" % tag)
|
||||||
print ()
|
print ()
|
||||||
|
print ("""
|
||||||
|
#ifdef HB_USE_TABLE_MAIN
|
||||||
|
int main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
if (argc != 2)
|
||||||
|
{
|
||||||
|
printf ("usage: %s hex-char\n", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
hb_codepoint_t u;
|
||||||
|
sscanf (argv[1], "%x", &u);
|
||||||
|
|
||||||
|
printf ("%d\n", hb_use_get_category (u));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
""")
|
||||||
print ()
|
print ()
|
||||||
print ("#endif /* HB_OT_SHAPER_USE_TABLE_HH */")
|
print ("#endif /* HB_OT_SHAPER_USE_TABLE_HH */")
|
||||||
print ("/* == End of generated table == */")
|
print ("/* == End of generated table == */")
|
||||||
|
|
|
@ -393,5 +393,27 @@ hb_use_get_category (unsigned u)
|
||||||
#undef VMPre
|
#undef VMPre
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef HB_USE_TABLE_MAIN
|
||||||
|
int main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
if (argc != 2)
|
||||||
|
{
|
||||||
|
printf ("usage: %s hex-char
|
||||||
|
", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
hb_codepoint_t u;
|
||||||
|
sscanf (argv[1], "%x", &u);
|
||||||
|
|
||||||
|
printf ("%d
|
||||||
|
", hb_use_get_category (u));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif /* HB_OT_SHAPER_USE_TABLE_HH */
|
#endif /* HB_OT_SHAPER_USE_TABLE_HH */
|
||||||
/* == End of generated table == */
|
/* == End of generated table == */
|
||||||
|
|
Loading…
Reference in New Issue