Files
Odin/core/terminal/terminal_posix.odin
T
2025-05-20 19:27:58 -04:00

10 lines
212 B
Odin

#+build linux, darwin, netbsd, openbsd, freebsd, haiku
package terminal
import "core:os"
import "core:sys/posix"
_is_terminal :: proc(handle: os.Handle) -> bool {
return bool(posix.isatty(posix.FD(handle)))
}