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

Tree @9436aa1 (Download .tar.gz)

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