File: terminal-null.go

package info (click to toggle)
golang-github-hlandau-xlog 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
// +build !darwin,!freebsd,!openbsd,!netbsd,!linux,!windows

package xlog

import "io"

func isTerminal(w io.Writer) bool {
	return false
}