12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_r_begin_page (S___(Plotter *_plotter))
- {
-
-
- _write_string (_plotter->data, "\033[2J");
-
- _write_string (_plotter->data, "\033P1p");
-
- _write_string (_plotter->data, "S(C0)\n");
-
- _pl_r_set_bg_color (S___(_plotter));
-
- _write_string (_plotter->data, "S(E)\n");
- return true;
- }
|