Initial snarf.
[shack.git] / libmojave / util / lm_ctype.mli
blob6d08f7c935204c77db86bfdf73fd71c52e491ad6
1 (*
3 * ----------------------------------------------------------------
5 * @begin[license]
6 * Copyright (C) 2003-2005 Mojave Group, Caltech
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation,
11 * version 2.1 of the License.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 * Additional permission is given to link this library with the
23 * OpenSSL project's "OpenSSL" library, and with the OCaml runtime,
24 * and you may distribute the linked executables. See the file
25 * LICENSE.libmojave for more details.
27 * Author: Jason Hickey
28 * @email{jyh@cs.caltech.edu}
29 * @end[license]
33 * Locale queries.
34 * See man pages for isdigit, isprint, isalnum, isupper and isgraph for more information.
36 val is_digit : char -> bool
37 val is_print : char -> bool
38 val is_alnum : char -> bool
39 val is_upper : char -> bool
40 val is_graph : char -> bool
43 * String operations.
45 val is_capitalized : string -> bool
46 val quote: string -> string
48 (*!
49 * @docoff
51 * -*-
52 * Local Variables:
53 * Caml-master: "compile"
54 * End:
55 * -*-