| 583 | } |
| 584 | |
| 585 | int hb_str_ends_with(const char *base, const char *str) |
| 586 | { |
| 587 | int blen = strlen(base); |
| 588 | int slen = strlen(str); |
| 589 | return (blen >= slen) && (0 == strcasecmp(base + blen - slen, str)); |
| 590 | } |
| 591 | |
| 592 | static void hb_common_global_hw_init() |
| 593 | { |
no outgoing calls
no test coverage detected