8 lines
276 B
OCaml
8 lines
276 B
OCaml
|
(* Basic interface to the terminfo database *)
|
||
|
|
||
|
external setupterm: unit -> unit = "terminfo_setup"
|
||
|
external getstr: string -> string = "terminfo_getstr"
|
||
|
external getnum: string -> int = "terminfo_getnum"
|
||
|
external puts: out_channel -> string -> int -> unit = "terminfo_puts"
|
||
|
|