*** empty log message ***
[bpt/guile.git] / libguile / strorder.c
... / ...
CommitLineData
1/* Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44\f
45
46#include <stdio.h>
47#include "_scm.h"
48#include "chars.h"
49
50#include "validate.h"
51#include "strorder.h"
52\f
53
54SCM_DEFINE1 (scm_string_equal_p, "string=?", scm_tc7_rpsubr,
55 (SCM s1, SCM s2),
56 "Lexicographic equality predicate; \n"
57 "Returns @t{#t} if the two strings are the same length and contain the same\n"
58 "characters in the same positions, otherwise returns @t{#f}. (r5rs)\n\n"
59 "@samp{String-ci=?} treats\n"
60 "upper and lower case letters as though they were the same character, but\n"
61 "@samp{string=?} treats upper and lower case as distinct characters.")
62#define FUNC_NAME s_scm_string_equal_p
63{
64 register scm_sizet i;
65 register unsigned char *c1, *c2;
66 SCM_VALIDATE_ROSTRING (1,s1);
67 SCM_VALIDATE_ROSTRING (2,s2);
68
69 i = SCM_ROLENGTH (s2);
70 if (SCM_ROLENGTH (s1) != i)
71 {
72 return SCM_BOOL_F;
73 }
74 c1 = SCM_ROUCHARS (s1);
75 c2 = SCM_ROUCHARS (s2);
76 while (0 != i--)
77 if (*c1++ != *c2++)
78 return SCM_BOOL_F;
79 return SCM_BOOL_T;
80}
81#undef FUNC_NAME
82
83SCM_DEFINE1 (scm_string_ci_equal_p, "string-ci=?", scm_tc7_rpsubr,
84 (SCM s1, SCM s2),
85 "Case-insensitive string equality predicate; returns @t{#t} if\n"
86 "the two strings are the same length and their component characters\n"
87 "match (ignoring case) at each position; otherwise returns @t{#f}. (r5rs)")
88#define FUNC_NAME s_scm_string_ci_equal_p
89{
90 register scm_sizet i;
91 register unsigned char *c1, *c2;
92 SCM_VALIDATE_ROSTRING (1,s1);
93 SCM_VALIDATE_ROSTRING (2,s2);
94
95 i = SCM_ROLENGTH (s2);
96 if (SCM_ROLENGTH (s1) != i)
97 {
98 return SCM_BOOL_F;
99 }
100 c1 = SCM_ROUCHARS (s1);
101 c2 = SCM_ROUCHARS (s2);
102 while (0 != i--)
103 if (scm_upcase(*c1++) != scm_upcase(*c2++))
104 return SCM_BOOL_F;
105 return SCM_BOOL_T;
106}
107#undef FUNC_NAME
108
109SCM_DEFINE1 (scm_string_less_p, "string<?", scm_tc7_rpsubr,
110 (SCM s1, SCM s2),
111 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
112 "is lexicographically less than @var{s2}. (r5rs)")
113#define FUNC_NAME s_scm_string_less_p
114{
115 register scm_sizet i, len, s2len;
116 register unsigned char *c1, *c2;
117 register int c;
118
119 SCM_VALIDATE_ROSTRING (1,s1);
120 SCM_VALIDATE_ROSTRING (2,s2);
121 len = SCM_ROLENGTH (s1);
122 s2len = SCM_ROLENGTH (s2);
123 if (len>s2len) len = s2len;
124 c1 = SCM_ROUCHARS (s1);
125 c2 = SCM_ROUCHARS (s2);
126
127 for (i = 0;i<len;i++) {
128 c = (*c1++ - *c2++);
129 if (c>0)
130 return SCM_BOOL_F;
131 if (c<0)
132 return SCM_BOOL_T;
133 }
134 {
135 SCM answer;
136 answer = SCM_BOOL(s2len != len);
137 return answer;
138 }
139}
140#undef FUNC_NAME
141
142SCM_DEFINE1 (scm_string_leq_p, "string<=?", scm_tc7_rpsubr,
143 (SCM s1, SCM s2),
144 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
145 "is lexicographically less than or equal to @var{s2}. (r5rs)")
146#define FUNC_NAME s_scm_string_leq_p
147{
148 return SCM_BOOL_NOT (scm_string_less_p (s2, s1));
149}
150#undef FUNC_NAME
151
152SCM_DEFINE1 (scm_string_gr_p, "string>?", scm_tc7_rpsubr,
153 (SCM s1, SCM s2),
154 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
155 "is lexicographically greater than @var{s2}. (r5rs)")
156#define FUNC_NAME s_scm_string_gr_p
157{
158 return scm_string_less_p (s2, s1);
159}
160#undef FUNC_NAME
161
162SCM_DEFINE1 (scm_string_geq_p, "string>=?", scm_tc7_rpsubr,
163 (SCM s1, SCM s2),
164 "Lexicographic ordering predicate; returns @t{#t} if @var{s1}\n"
165 "is lexicographically greater than or equal to @var{s2}. (r5rs)")
166#define FUNC_NAME s_scm_string_geq_p
167{
168 return SCM_BOOL_NOT (scm_string_less_p (s1, s2));
169}
170#undef FUNC_NAME
171
172SCM_DEFINE1 (scm_string_ci_less_p, "string-ci<?", scm_tc7_rpsubr,
173 (SCM s1, SCM s2),
174 "Case insensitive lexicographic ordering predicate; \n"
175 "returns @t{#t} if @var{s1} is lexicographically less than\n"
176 "@var{s2} regardless of case. (r5rs)")
177#define FUNC_NAME s_scm_string_ci_less_p
178{
179 register scm_sizet i, len, s2len;
180 register unsigned char *c1, *c2;
181 register int c;
182 SCM_VALIDATE_ROSTRING (1,s1);
183 SCM_VALIDATE_ROSTRING (2,s2);
184 len = SCM_ROLENGTH (s1);
185 s2len = SCM_ROLENGTH (s2);
186 if (len>s2len) len = s2len;
187 c1 = SCM_ROUCHARS (s1);
188 c2 = SCM_ROUCHARS (s2);
189 for (i = 0;i<len;i++) {
190 c = (scm_upcase(*c1++) - scm_upcase(*c2++));
191 if (c>0) return SCM_BOOL_F;
192 if (c<0) return SCM_BOOL_T;
193 }
194 return SCM_BOOL(s2len != len);
195}
196#undef FUNC_NAME
197
198SCM_DEFINE1 (scm_string_ci_leq_p, "string-ci<=?", scm_tc7_rpsubr,
199 (SCM s1, SCM s2),
200 "Case insensitive lexicographic ordering predicate; \n"
201 "returns @t{#t} if @var{s1} is lexicographically less than\n"
202 "or equal to @var{s2} regardless of case. (r5rs)")
203#define FUNC_NAME s_scm_string_ci_leq_p
204{
205 return SCM_BOOL_NOT (scm_string_ci_less_p (s2, s1));
206}
207#undef FUNC_NAME
208
209SCM_DEFINE1 (scm_string_ci_gr_p, "string-ci>?", scm_tc7_rpsubr,
210 (SCM s1, SCM s2),
211 "Case insensitive lexicographic ordering predicate; \n"
212 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
213 "@var{s2} regardless of case. (r5rs)")
214#define FUNC_NAME s_scm_string_ci_gr_p
215{
216 return scm_string_ci_less_p (s2, s1);
217}
218#undef FUNC_NAME
219
220SCM_DEFINE1 (scm_string_ci_geq_p, "string-ci>=?", scm_tc7_rpsubr,
221 (SCM s1, SCM s2),
222 "Case insensitive lexicographic ordering predicate; \n"
223 "returns @t{#t} if @var{s1} is lexicographically greater than\n"
224 "or equal to @var{s2} regardless of case. (r5rs)")
225#define FUNC_NAME s_scm_string_ci_geq_p
226{
227 return SCM_BOOL_NOT (scm_string_ci_less_p (s1, s2));
228}
229#undef FUNC_NAME
230
231\f
232
233void
234scm_init_strorder ()
235{
236#include "strorder.x"
237}
238