1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-18 11:31:00 -05:00

Expose lineptr and unlineptr outside terminal.c.

This will allow test programs to look more easily at the terminal's
data structures.
This commit is contained in:
Simon Tatham
2023-03-04 17:19:24 +00:00
parent 1b8fb1d436
commit c890449d76
2 changed files with 8 additions and 2 deletions

View File

@ -613,4 +613,7 @@ enum {
#undef DEFINE_FLAG_BIT
};
termline *term_get_line(Terminal *term, int y);
void term_release_line(termline *line);
#endif