File: ledit.mli

package info (click to toggle)
ledit 2.04-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: ml: 2,215; makefile: 80; sh: 12
file content (27 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(***********************************************************************)
(*                                                                     *)
(*                               Ledit                                 *)
(*                                                                     *)
(*                Daniel de Rauglaudre, INRIA Rocquencourt             *)
(*                                                                     *)
(*  Copyright 1997-2008 Institut National de Recherche en Informatique *)
(*  et Automatique.  Distributed only by permission.                   *)
(*                                                                     *)
(***********************************************************************)

(* $Id: ledit.mli,v 1.13 2008/01/16 09:24:48 deraugla Exp $ *)

value input_char : in_channel -> string;

value set_prompt : string -> unit;
value get_prompt : unit -> string;
value open_histfile : bool -> string -> unit;
value close_histfile : unit -> unit;
value set_max_len : int -> unit;
value set_son_pid : int -> unit;

value unset_meta_as_escape : unit -> unit;
value set_utf8 : unit -> unit;
value set_ascii : unit -> unit;

value trace_sequences : ref bool;