This is allchar.c in view mode; [Download] [Up]
/*************************************************************************** * * * This program may be helpful in constructing translation filters. * * * ***************************************************************************/ #include <stdio.h> main() { int i; /** loop counter & current character */ /*** For each printable ascii value, print out the octal, hex, and */ /*** character values. */ for (i = 0x20 ; i < 0xfe; ++i) { printf("%3o\t%2X\t%c\n", i, i, i); } } /*main*/
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.