| 190 | |
| 191 | |
| 192 | void enable_framebuffer_cursor(bool const p_state) |
| 193 | { |
| 194 | int fd = open(fbcon_path, O_WRONLY); |
| 195 | write(fd, p_state ? "1" : "0", 1); |
| 196 | close(fd); |
| 197 | } |
| 198 | |
| 199 | |
| 200 | bool is_framebuffer_cursor_enabled() |
no outgoing calls
no test coverage detected