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

Tree @b9f78f8 (Download .tar.gz)

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