Handles a possible custom key event */
| 4106 | Handles a possible custom key event |
| 4107 | */ |
| 4108 | void TelCom_ProcessCustomKeyEvent(int key_id) { |
| 4109 | tCustomKeyEventID *curr = Telcom_custom_key_event_root; |
| 4110 | |
| 4111 | while (curr) { |
| 4112 | if (key_id == curr->key_id) { |
| 4113 | curr->downcount++; |
| 4114 | return; |
| 4115 | } |
| 4116 | |
| 4117 | curr = curr->next; |
| 4118 | } |
| 4119 | } |
no outgoing calls
no test coverage detected