| 794 | /* ── Pure helpers ─────────────────────────────────────────────── */ |
| 795 | |
| 796 | bool cbm_http_path_match(const char *str, const char *pattern) { |
| 797 | if (!str || !pattern) |
| 798 | return false; |
| 799 | size_t plen = strlen(pattern); |
| 800 | if (plen > 0 && pattern[plen - 1] == '*') |
| 801 | return strncmp(str, pattern, plen - 1) == 0; |
| 802 | return strcmp(str, pattern) == 0; |
| 803 | } |
| 804 | |
| 805 | static int hex_val(char ch) { |
| 806 | if (ch >= '0' && ch <= '9') |
no outgoing calls
no test coverage detected