MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / print_dashes

Function print_dashes

modules/dasSQLITE/sqlite/shell.c:17395–17403  ·  view source on GitHub ↗

** Print N dashes */

Source from the content-addressed store, hash-verified

17393** Print N dashes
17394*/
17395static void print_dashes(FILE *out, int N){
17396 const char zDash[] = "--------------------------------------------------";
17397 const int nDash = sizeof(zDash) - 1;
17398 while( N>nDash ){
17399 fputs(zDash, out);
17400 N -= nDash;
17401 }
17402 raw_printf(out, "%.*s", N, zDash);
17403}
17404
17405/*
17406** Print a markdown or table-style row separator using ascii-art

Callers 3

print_row_separatorFunction · 0.85
shell_callbackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected