Hello.

It's good if there is no need for multithreading or recursion.
More elegant solution would be something like that:

int *range_size = malloc(65537 * sizeof(int));
assert(range_size);
glyph_unicode_entry *gtab = malloc(65537 * sizeof(glyph_unicode_entry));
assert(gtab);
<...>
free(gtab);
free(range_size);

Regards, Mindaugas.

On 2013-09-03 01:30, Graham Douglas wrote:
static int range_size[65537];
static glyph _unicode_entry gtab[65537];



_______________________________________________
dev-luatex mailing list
dev-luatex@ntg.nl
http://www.ntg.nl/mailman/listinfo/dev-luatex

Reply via email to