Empty the text buffer */
| 424 | |
| 425 | /* Empty the text buffer */ |
| 426 | void |
| 427 | clear_text_buffer(struct text_buffer *tb) |
| 428 | { |
| 429 | tb->text_last = 0; |
| 430 | tb->text[0] = '\0'; |
| 431 | tb->num_lines = 0; |
| 432 | } |
| 433 | |
| 434 | /* Free up allocated memory. */ |
| 435 | void |
no outgoing calls
no test coverage detected