mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
9 lines
99 B
Odin
9 lines
99 B
Odin
package main
|
|
|
|
import "core:sys/posix"
|
|
|
|
is_tty :: proc() -> bool {
|
|
return bool(posix.isatty(1))
|
|
}
|
|
|