| 841 | } |
| 842 | |
| 843 | void strbuf_addstr_urlencode(struct strbuf *sb, const char *s, |
| 844 | char_predicate allow_unencoded_fn) |
| 845 | { |
| 846 | strbuf_add_urlencode(sb, s, strlen(s), allow_unencoded_fn); |
| 847 | } |
| 848 | |
| 849 | void humanise_count(size_t count, char **value, const char **unit) |
| 850 | { |
no test coverage detected