Clear the next row
(&mut self, x: usize, y: usize)
| 142 | { |
| 143 | // Clear the next row |
| 144 | fn clr_next_row(&mut self, x: usize, y: usize) |
| 145 | { |
| 146 | let c = ScreenCharacter |
| 147 | { |
| 148 | ac: b' ', |
| 149 | cc: self.colorcode, |
| 150 | }; |
| 151 | } |
| 152 | |
| 153 | |
| 154 | // Clear the screen |
no outgoing calls
no test coverage detected