| 123 | /////////////////////////////////////////// |
| 124 | |
| 125 | bool string_startswith(const char *a, const char *is) { |
| 126 | while (*is != '\0') { |
| 127 | if (*a == '\0' || *is != *a) |
| 128 | return false; |
| 129 | a++; |
| 130 | is++; |
| 131 | } |
| 132 | return true; |
| 133 | } |
| 134 | |
| 135 | /////////////////////////////////////////// |
| 136 |
no outgoing calls
no test coverage detected