Codebase list enumiax / de5180e4-5b1f-4300-b10a-abfb0d65728b/main charmap.h
de5180e4-5b1f-4300-b10a-abfb0d65728b/main

Tree @de5180e4-5b1f-4300-b10a-abfb0d65728b/main (Download .tar.gz)

charmap.h @de5180e4-5b1f-4300-b10a-abfb0d65728b/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" \
;