kolibrios/programs/emulator/dgen-sdl-1.33/sdl/chartfont.c
turbocat ea1a60faa3 Upload DGEN port source
git-svn-id: svn://kolibrios.org@9837 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-06-15 18:25:17 +00:00

16 lines
329 B
C

/* This prints out all the ASCII characters in the format pbm2df expects them
* You can run this on an xterm with an 8x13 font, and put the resulting
* screenshot straight into pbm2df!
*/
main()
{
unsigned char i;
for(i = ' '; i < 128; ++i)
{
printf("%c", i);
if((i % 32) == 31) printf("\n");
}
return 0;
}