Codebase list golang-github-alecthomas-kong / 9c19b2d3-dc8b-41a0-9c9a-78506f97c374/upstream/sid guesswidth.go
9c19b2d3-dc8b-41a0-9c9a-78506f97c374/upstream/sid

Tree @9c19b2d3-dc8b-41a0-9c9a-78506f97c374/upstream/sid (Download .tar.gz)

guesswidth.go @9c19b2d3-dc8b-41a0-9c9a-78506f97c374/upstream/sidraw · history · blame

1
2
3
4
5
6
7
8
9
// +build appengine !linux,!freebsd,!darwin,!dragonfly,!netbsd,!openbsd

package kong

import "io"

func guessWidth(w io.Writer) int {
	return 80
}