| 43 | }; |
| 44 | |
| 45 | static bool bootstrap_arg_is(const char *arg, const char *expected) { |
| 46 | return arg && expected && strcmp(arg, expected) == 0; |
| 47 | } |
| 48 | |
| 49 | static int bootstrap_find_arg(int argc, char *const argv[], const char *expected) { |
| 50 | for (int i = 1; argv && i < argc; i++) { |
no outgoing calls
no test coverage detected