cprintf that knows how to wrap down lines
| 321 | |
| 322 | // cprintf that knows how to wrap down lines |
| 323 | void wrapcprintf(int wrapcol, const char *s, ...) |
| 324 | { |
| 325 | va_list args; |
| 326 | va_start(args, s); |
| 327 | string buf = vmake_stringf(s, args); |
| 328 | va_end(args); |
| 329 | wrapcprint_skipping(0, wrapcol, buf); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Print a string wrapped by some value, relative to the current cursor region, |
no test coverage detected