Codebase list enumiax / 374ec525-be98-4830-bac2-c9cd08fefe3a/main charmap.h
374ec525-be98-4830-bac2-c9cd08fefe3a/main

Tree @374ec525-be98-4830-bac2-c9cd08fefe3a/main (Download .tar.gz)

charmap.h @374ec525-be98-4830-bac2-c9cd08fefe3a/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" \
;