3 * ----------------------------------------------------------------
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}
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
45 val is_capitalized
: string -> bool
46 val quote
: string -> string
53 * Caml-master: "compile"