Codebase list enumiax / 7018fe5d-2e6c-476a-9079-8f7defeb7161/main charmap.h
7018fe5d-2e6c-476a-9079-8f7defeb7161/main

Tree @7018fe5d-2e6c-476a-9079-8f7defeb7161/main (Download .tar.gz)

charmap.h @7018fe5d-2e6c-476a-9079-8f7defeb7161/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" \
;