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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/* $Id: ctypes.pl,v 1.3 2002/02/01 16:49:11 jan Exp $
Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: jan@swi.psy.uva.nl
WWW: http://www.swi-prolog.org
Copyright (C): 1985-2002, University of Amsterdam
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module( ctypes,[
is_alnum/1,
is_alpha/1,
is_ascii/1,
is_cntrl/1,
is_csym/1,
is_csymf/1,
is_digit/1,
is_digit/3,
is_endfile/1,
is_endline/1,
is_graph/1,
is_lower/1,
is_newline/1,
is_newpage/1,
is_paren/2,
is_period/1,
is_print/1,
is_quote/1,
is_space/1,
is_upper/1,
is_white/1,
to_lower/2,
to_upper/2] ).
% This file implements the functionality of the corresponding Quintus
% library based on SWI-Prolog's code_type/2 predicate. Please check
% the decumentation of this predicate to find the definitions of the
% classes.
is_alnum(C) :- code_type(C, alnum).
is_alpha(C) :- code_type(C, alpha).
is_ascii(C) :- code_type(C, ascii).
is_cntrl(C) :- code_type(C, cntrl).
is_csym(C) :- code_type(C, csym).
is_csymf(C) :- code_type(C, csymf).
is_digit(C) :- code_type(C, digit).
is_graph(C) :- code_type(C, graph).
is_lower(C) :- code_type(C, lower).
is_upper(C) :- code_type(C, upper).
is_period(C) :- code_type(C, period).
is_endline(C) :- code_type(C, end_of_line).
is_print(C) :- is_graph(C).
is_punct(C) :- code_type(C, punct).
is_quote(C) :- code_type(C, quote).
is_space(C) :- code_type(C, space).
is_white(C) :- code_type(C, white).
is_endfile(-1).
is_newpage(12). % Control-L
is_newline(10).
is_paren(0'(, 0')). % Prolog is too good at this
is_paren(0'[, 0']).
is_paren(0'{, 0'}).
% to_lower( ?U,?L )
% Succeeds if `U' is upper case character and `L' is the
% corresponding lower case character or `U' is an ascii character,
% but not an upper case letter and `L' is equal to `U'.
to_lower(U, L) :-
code_type(L, to_lower(U)).
to_upper(U, L) :-
code_type(L, to_upper(U)).
% is_digit( ?C,?Base,?Weight )
% Succeeds if `C' is a digit using `Base' as base and `Weight'
% represents its value. Only the base-10 case is handled by code_type.
is_digit(C, Base, Weight) :-
Base == 10, !,
code_type(C, digit(Weight)).
is_digit(C, Base, Weight) :-
between(2, 36, Base),
succ(X, Base),
between(0, X, Weight),
is_digit(C, Weight).
is_digit(C, Weight) :-
Weight < 10, !,
plus(Weight, 0'0, C).
is_digit(C, Weight) :-
plus(Weight, 87, C), !. /* `a`-10 */
is_digit(C, Weight) :-
plus(Weight, 55, C). /* `A`-10 */
|