| 15 | #include "thread-utils.h" |
| 16 | |
| 17 | bool is_known_hook(const char *name) |
| 18 | { |
| 19 | const char **h; |
| 20 | for (h = hook_name_list; *h; h++) |
| 21 | if (!strcmp(*h, name)) |
| 22 | return true; |
| 23 | return false; |
| 24 | } |
| 25 | |
| 26 | const char *find_hook(struct repository *r, const char *name) |
| 27 | { |
no outgoing calls
no test coverage detected