Codebase list enumiax / 21e5fa57-7e14-4b5e-bc4a-8445277571b8/main charmap.h
21e5fa57-7e14-4b5e-bc4a-8445277571b8/main

Tree @21e5fa57-7e14-4b5e-bc4a-8445277571b8/main (Download .tar.gz)

charmap.h @21e5fa57-7e14-4b5e-bc4a-8445277571b8/mainraw · history · blame

static char charmap[] = \
	/* Numbers */
	"0123456789" \
	/* Lowercase Alpha */
	"abcdefghijklmnopqrstuvwxyz" \
	/* Uppercase Alpha */
/*	"ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ */ 
	/* Special Character Set 1 */
/*	"!@#$%^&*()-_+=~`" \ */
	/* Special Character Set 2 */
/*	"[]{}|\\:;"'<>,.?/" \ */
	/* Space */
	" " \
	/* Tab */
/*	"\t" \ */
			/* NULL Terminator - DO NOT REMOVE!!! */
			"\0" \
;