Codebase list enumiax / 1cdf56f4-0fca-4469-a48c-e27bc4cb7b75/main charmap.h
1cdf56f4-0fca-4469-a48c-e27bc4cb7b75/main

Tree @1cdf56f4-0fca-4469-a48c-e27bc4cb7b75/main (Download .tar.gz)

charmap.h @1cdf56f4-0fca-4469-a48c-e27bc4cb7b75/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" \
;