** Print N dashes */
| 12103 | ** Print N dashes |
| 12104 | */ |
| 12105 | static 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 |
no outgoing calls
no test coverage detected