Codebase list golang-github-vbauerster-mpb / d7c471f cwriter / writer_posix.go
d7c471f

Tree @d7c471f (Download .tar.gz)

writer_posix.go @d7c471fraw · history · blame

1
2
3
4
5
6
7
8
9
// +build !windows

package cwriter

import "fmt"

func (w *Writer) clearLines() {
	fmt.Fprintf(w.out, cuuAndEd, w.lineCount)
}