summaryrefslogtreecommitdiff
path: root/stdlib/char.mli
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1998-12-08 14:53:55 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1998-12-08 14:53:55 +0000
commit1c47e1d33035685ca31821129c067f10573acb44 (patch)
treebbca770fa973dd81e26986afc0c95137a96b7483 /stdlib/char.mli
parentfacd68e5dcc1fedb11d7d089f5203c577113e076 (diff)
downloadocaml-1c47e1d33035685ca31821129c067f10573acb44.tar.gz
Passage version 2.01
Pervasives: ajout int_of_char, char_of_int Char: suppression int_of_char, char_of_int git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2229 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/char.mli')
-rw-r--r--stdlib/char.mli4
1 files changed, 0 insertions, 4 deletions
diff --git a/stdlib/char.mli b/stdlib/char.mli
index 64544621fe..f69e8fda1b 100644
--- a/stdlib/char.mli
+++ b/stdlib/char.mli
@@ -15,14 +15,10 @@
external code : char -> int = "%identity"
(* Return the ASCII code of the argument. *)
-external int_of_char : char -> int = "%identity"
- (* Alias of the [code] function above. *)
val chr: int -> char
(* Return the character with the given ASCII code.
Raise [Invalid_argument "Char.chr"] if the argument is
outside the range 0--255. *)
-val char_of_int : int -> char
- (* Alias of the [chr] function above. *)
val escaped : char -> string
(* Return a string representing the given character,
with special characters escaped following the lexical conventions