Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  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.  */
  5.  
  6. main()
  7. {
  8.   unsigned char i;
  9.   for(i = ' '; i < 128; ++i)
  10.   {
  11.     printf("%c", i);
  12.     if((i % 32) == 31) printf("\n");
  13.   }
  14.   return 0;
  15. }
  16.