| 3013 | } |
| 3014 | |
| 3015 | const struct ext_func_tab * |
| 3016 | ext_func_tab_from_func(int (*fn)(void)) |
| 3017 | { |
| 3018 | const struct ext_func_tab *extcmd; |
| 3019 | |
| 3020 | for (extcmd = extcmdlist; extcmd->ef_txt; ++extcmd) |
| 3021 | if (extcmd->ef_funct == fn) |
| 3022 | return extcmd; |
| 3023 | |
| 3024 | return NULL; |
| 3025 | } |
| 3026 | |
| 3027 | /* returns the key bound to a movement command for given DIR_ and MV_ mode */ |
| 3028 | char |
no outgoing calls