DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- It creates the C file (like
nxfonts_bitmaps_sans17x22.c) by compilingnxfonts_bitmaps.cand includingnxfonts_sans17x22.hto create the font dataset at build time.
The function{{ function nxf_getglyphset()}} in the file nxfonts_getfont.c selects the 7-bit font range (codes < 128) or the 8-bit range (code >= 128 > 256). The fonts are kept in simple arrays splitting the data up into ranges of values lets you above the non-printable codes at the beginning and end of each range. There is even a comment in the code there "Someday, perhaps 16-bit fonts will go here".
...