** Print N dashes */
| 17393 | ** Print N dashes |
| 17394 | */ |
| 17395 | static 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 |
no outgoing calls
no test coverage detected