| 803 | |
| 804 | |
| 805 | input_type *InputFind(InputObject *object) |
| 806 | { |
| 807 | for (auto *input = g_input; input; input = input->Prev) |
| 808 | if (input->ScriptObject == object) |
| 809 | return input; |
| 810 | return NULL; |
| 811 | } |
| 812 | |
| 813 | |
| 814 |
nothing calls this directly
no outgoing calls
no test coverage detected