Add VCS links
[debian-dgen.git] / sdl / chartfont.c
blobf670d19f1d3a7963b1dfcc43d7e701ce206f3ef7
1 /* This prints out all the ASCII characters in the format pbm2df expects them
2 * You can run this on an xterm with an 8x13 font, and put the resulting
3 * screenshot straight into pbm2df!
4 */
6 main()
8 unsigned char i;
9 for(i = ' '; i < 128; ++i)
11 printf("%c", i);
12 if((i % 32) == 31) printf("\n");
14 return 0;