| 179 | } |
| 180 | |
| 181 | const char *strip_namespace(const char *namespaced_ref) |
| 182 | { |
| 183 | const char *out; |
| 184 | if (skip_prefix(namespaced_ref, get_git_namespace(), &out)) |
| 185 | return out; |
| 186 | return NULL; |
| 187 | } |
| 188 | |
| 189 | const char *get_log_output_encoding(void) |
| 190 | { |
no test coverage detected