| 112 | } |
| 113 | |
| 114 | void DeleteLine(AreaLine *dead) |
| 115 | { |
| 116 | if(dead->prev) |
| 117 | dead->prev->next = dead->next; |
| 118 | if(dead->next) |
| 119 | dead->next->prev = dead->prev; |
| 120 | if(dead->data != dead->startBuf) |
| 121 | delete[] dead->data; |
| 122 | delete dead; |
| 123 | } |
| 124 | |
| 125 | // Get shift after symbol ch in characters from current position to the next |
| 126 | int GetCharShift(char ch, int currPos) |
no outgoing calls
no test coverage detected