# A u2g file contains a table facilitating translation of a glyph name
# into a Unicode value and vice versa.
#
# u2g file format:
# Lines that have '#' in the first column are considered to be comments and
# are ignored.
# NB: this is not like shell-style comments, no 
#     characters are allowed to precede the '#'
#
# First non-comment line contains a single decimal number indicating the 
# number of records that follow.
#
# Each record consists of a string and a hexadecimal number, separated by 
# a single comma. The string is not encolosed in quotation marks of any kind
# and no whitespace is allowed around the comma or anywhere else on the line.
# The records MUST be sorted alphabetically (by the string) in ascending order.
#
# An Example:
4
A,0x0041
Alef,0x05d0
B,0x0042
a,0x0061

