mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-26 08:13:56 +00:00
13 lines
223 B
Odin
13 lines
223 B
Odin
#+private
|
|
#+build js
|
|
package terminal
|
|
|
|
_is_terminal :: proc "contextless" (handle: any) -> bool {
|
|
return true
|
|
}
|
|
|
|
_init_terminal :: proc "contextless" () {
|
|
color_depth = .None
|
|
}
|
|
|
|
_fini_terminal :: proc "contextless" () { } |