File:  [ELWIX - Embedded LightWeight unIX -] / gpl / axl / test / gen-codes.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 8 07:09:12 2011 UTC (13 years ago) by misho
Branches: axl, MAIN
CVS tags: HEAD, AXL0_6_7, AXL0_6_1
3th party - XML

#include <stdio.h>

int main (int argc, char ** argv)
{
	int iterator = 0;
	
	while (iterator <= 255) {
		
		printf ("%c\n", (char) iterator);
		iterator++;
	}
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>