Files
envr/tty.odin

9 lines
99 B
Odin

package main
import "core:sys/posix"
is_tty :: proc() -> bool {
return bool(posix.isatty(1))
}