123456789101112131415161718192021222324252627282930313233 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_r_end_page (S___(Plotter *_plotter))
- {
-
- _write_string (_plotter->data, "\033\\");
-
- _write_string (_plotter->data, "\033[1;1H");
- return true;
- }
|