MCPcopy Create free account
hub / github.com/duckdb/duckdb / PrintBoxLine

Method PrintBoxLine

tools/shell/shell_renderer.cpp:667–673  ·  view source on GitHub ↗

Draw horizontal line N characters long using unicode box ** characters */

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

PrintMethod · 0.45

Tested by

no test coverage detected