/* Print out all the high-byte characters to see what they look like
   in this codepage. */

/* compile: gcc -o chartab chartab.c */

/* This is copyright (C) 2002, Louis W. Erickson, all rights reserved.
   As if it's not more trouble to download than to write your own. */

#include <stdio.h>

int main(void)
{
        int i = 0;

        for(i = 128; i < 256; i++)
        {
                printf("%02X %c ", i, i);
                if((i+1) % 8 == 0) printf("\n");
        }
        printf("\n");
        return 0;
}

