| 8091 | } |
| 8092 | |
| 8093 | char |
| 8094 | get_menu_cmd_key(char ch) |
| 8095 | { |
| 8096 | char *found = strchr(gm.mapped_menu_op, ch); |
| 8097 | |
| 8098 | if (found) { |
| 8099 | int idx = (int) (found - gm.mapped_menu_op); |
| 8100 | |
| 8101 | ch = gm.mapped_menu_cmds[idx]; |
| 8102 | } |
| 8103 | return ch; |
| 8104 | } |
| 8105 | |
| 8106 | /* |
| 8107 | * Map the given character to its corresponding menu command. If it |
no outgoing calls
no test coverage detected