Get shift after symbol ch in characters from current position to the next
| 124 | |
| 125 | // Get shift after symbol ch in characters from current position to the next |
| 126 | int GetCharShift(char ch, int currPos) |
| 127 | { |
| 128 | return ch == '\t' ? TAB_SIZE - currPos % TAB_SIZE : 1; |
| 129 | } |
| 130 | |
| 131 | bool IsPressed(int key) |
| 132 | { |
no outgoing calls
no test coverage detected