| 450 | } |
| 451 | |
| 452 | const char *find_keycode_name(Key p_keycode) { |
| 453 | const _KeyCodeText *kct = &_keycodes[0]; |
| 454 | |
| 455 | while (kct->text) { |
| 456 | if (kct->code == p_keycode) { |
| 457 | return kct->text; |
| 458 | } |
| 459 | kct++; |
| 460 | } |
| 461 | |
| 462 | return ""; |
| 463 | } |
| 464 | |
| 465 | int keycode_get_count() { |
| 466 | const _KeyCodeText *kct = &_keycodes[0]; |
no outgoing calls
no test coverage detected