| 673 | static struct LocalPlayerInput* sources_tail; |
| 674 | |
| 675 | void LocalPlayerInput_Add(struct LocalPlayerInput* source) { |
| 676 | LinkedList_Append(source, sources_head, sources_tail); |
| 677 | } |
| 678 | |
| 679 | void LocalPlayerInput_Remove(struct LocalPlayerInput* source) { |
| 680 | struct LocalPlayerInput* cur; |
no outgoing calls
no test coverage detected