http://gothub.pjsfkvpxlinjamtawaksbnnaqs2fc2mtvmozrzckxh7f3kis6yea25ad.onion/git/git/blob/master/ctype.c
GotHub (master) Explore About Source code Back to git/git ctype.c Raw 1 /* 2 * Sane locale-independent, ASCII ctype. 3 * 4 * No surprises, and works with signed and unsigned chars. 5 */ 6 # include "git-compat-util.h" 7 8 enum { 9 S = GIT_SPACE , 10 A = GIT_ALPHA , 11 D = GIT_DIGIT , 12 G = GIT_GLOB_SPECIAL , /* *, ?, [, \\ */ 13 R = GIT_REGEX_SPECIAL , /* $, (, ), +, ., ^, {, | */ 14 P = GIT_PATHSPEC_MAGIC , /* other non-alnum, except for ] and } */ 15 X = GIT_CNTRL , 16 U = GIT_PUNCT ,...