Draw horizontal line N characters long using unicode box ** characters */
| 665 | ** characters |
| 666 | */ |
| 667 | void PrintBoxLine(PrintStream &out, idx_t N) { |
| 668 | string box_line; |
| 669 | for (idx_t i = 0; i < N; i++) { |
| 670 | box_line += BOX_24; |
| 671 | } |
| 672 | out.Print(box_line); |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | ** Draw a horizontal separator for a RenderMode::Box table. |