MCPcopy Create free account
hub / github.com/audacity/audacity / print_dashes

Function print_dashes

lib-src/sqlite/shell.c:12105–12113  ·  view source on GitHub ↗

** Print N dashes */

Source from the content-addressed store, hash-verified

12103** Print N dashes
12104*/
12105static void print_dashes(FILE *out, int N){
12106 const char zDash[] = "--------------------------------------------------";
12107 const int nDash = sizeof(zDash) - 1;
12108 while( N>nDash ){
12109 fputs(zDash, out);
12110 N -= nDash;
12111 }
12112 raw_printf(out, "%.*s", N, zDash);
12113}
12114
12115/*
12116** 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