| 138 | } |
| 139 | |
| 140 | static int proto_is_http(const char *s) |
| 141 | { |
| 142 | if (!s) |
| 143 | return 0; |
| 144 | return !strcmp(s, "https") || !strcmp(s, "http"); |
| 145 | } |
| 146 | |
| 147 | static void credential_describe(struct credential *c, struct strbuf *out); |
| 148 | static void credential_format(struct credential *c, struct strbuf *out); |
no outgoing calls
no test coverage detected