/rusxmms/librcd

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcd

« back to all changes in this revision

Viewing changes to statgen/ascii.c

  • Committer: Suren A. Chilingaryan
  • Date: 2005-06-16 23:19:27 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcd--main--0.1--base-0
initial import

(automatically generated log message)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
 
 
3
main() {
 
4
    int i;
 
5
    
 
6
    for (i=32;i<256;i++) {
 
7
        if ((i%8)==0) printf("\n");
 
8
        printf("%3.u %2.x %c   ",i,i,i);
 
9
    }
 
10
    printf("\n\n");
 
11
}