MCPcopy Create free account
hub / github.com/git/git / istitlechar

Function istitlechar

pretty.c:941–945  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

939}
940
941static int istitlechar(char c)
942{
943 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
944 (c >= '0' && c <= '9') || c == '.' || c == '_';
945}
946
947void format_sanitized_subject(struct strbuf *sb, const char *msg, size_t len)
948{

Callers 1

format_sanitized_subjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected