| 571 | /* ── Pure helpers ─────────────────────────────────────────────── */ |
| 572 | |
| 573 | bool cbm_http_path_match(const char *str, const char *pattern) { |
| 574 | if (!str || !pattern) |
| 575 | return false; |
| 576 | size_t plen = strlen(pattern); |
| 577 | if (plen > 0 && pattern[plen - 1] == '*') |
| 578 | return strncmp(str, pattern, plen - 1) == 0; |
| 579 | return strcmp(str, pattern) == 0; |
| 580 | } |
| 581 | |
| 582 | static int hex_val(char ch) { |
| 583 | if (ch >= '0' && ch <= '9') |
no outgoing calls
no test coverage detected