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

Tree @f5ce7ca (Download .tar.gz)

writer_posix.go @f5ce7caraw · 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)
}