| 71 | } |
| 72 | |
| 73 | BOOL icase_compare(const char* a, const char* b){ |
| 74 | while (*a && *b) { |
| 75 | if (*a != *b) { |
| 76 | char lA = to_lower(*a); |
| 77 | char lB = to_lower(*b); |
| 78 | if (lA != lB){ |
| 79 | return FALSE; |
| 80 | } |
| 81 | } |
| 82 | a++; |
| 83 | b++; |
| 84 | } |
| 85 | // Either *a or *b is nul |
| 86 | return *a == *b; |
| 87 | } |
| 88 | |
| 89 | int HLS_key_action ( int key , int msg ) |
| 90 | { |
nothing calls this directly
no test coverage detected