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