File: display.go

package info (click to toggle)
golang-github-k0kubun-go-ansi 0.0~git20180517.3bf9e29-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 100 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 114 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package ansi

import (
	"fmt"
)

func EraseInLine(mode int) {
	fmt.Printf("\x1b[%dK", mode)
}