Codebase list enumiax / 8d387eaf-0d15-45ef-81a6-fae8f6ce68e4/main charmap.h
8d387eaf-0d15-45ef-81a6-fae8f6ce68e4/main

Tree @8d387eaf-0d15-45ef-81a6-fae8f6ce68e4/main (Download .tar.gz)

charmap.h @8d387eaf-0d15-45ef-81a6-fae8f6ce68e4/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" \
;