*** empty log message ***
[bpt/guile.git] / srfi / srfi-13.h
1 #ifndef SCM_SRFI_13_H
2 #define SCM_SRFI_13_H
3 /* srfi-13.c --- SRFI-13 procedures for Guile
4 *
5 * Copyright (C) 2001 Free Software Foundation, Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2, or (at
10 * your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this software; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307 USA
21 *
22 * As a special exception, the Free Software Foundation gives
23 * permission for additional uses of the text contained in its release
24 * of GUILE.
25 *
26 * The exception is that, if you link the GUILE library with other
27 * files to produce an executable, this does not by itself cause the
28 * resulting executable to be covered by the GNU General Public
29 * License. Your use of that executable is in no way restricted on
30 * account of linking the GUILE library code into it.
31 *
32 * This exception does not however invalidate any other reasons why
33 * the executable file might be covered by the GNU General Public
34 * License.
35 *
36 * This exception applies only to the code released by the Free
37 * Software Foundation under the name GUILE. If you copy code from
38 * other Free Software Foundation releases into a copy of GUILE, as
39 * the General Public License permits, the exception does not apply to
40 * the code that you add in this way. To avoid misleading anyone as
41 * to the status of such modified files, you must delete this
42 * exception notice from them.
43 *
44 * If you write modifications of your own for GUILE, it is your choice
45 * whether to permit this exception to apply to your modifications.
46 * If you do not wish that, delete this exception notice. */
47 \f
48
49 void scm_init_srfi_13 (void);
50 void scm_init_srfi_13_14 (void);
51
52 SCM scm_string_any (SCM pred, SCM s, SCM start, SCM end);
53 SCM scm_string_every (SCM pred, SCM s, SCM start, SCM end);
54 SCM scm_string_tabulate (SCM proc, SCM len);
55 SCM scm_string_to_listS (SCM str, SCM start, SCM end);
56 SCM scm_reverse_list_to_string (SCM chrs);
57 SCM scm_string_join (SCM ls, SCM delimiter, SCM grammar);
58 SCM scm_string_copyS (SCM str, SCM start, SCM end);
59 SCM scm_substring_shared (SCM str, SCM start, SCM end);
60 SCM scm_string_copy_x (SCM target, SCM tstart, SCM s, SCM start, SCM end);
61 SCM scm_string_take (SCM s, SCM n);
62 SCM scm_string_drop (SCM s, SCM n);
63 SCM scm_string_take_right (SCM s, SCM n);
64 SCM scm_string_drop_right (SCM s, SCM n);
65 SCM scm_string_pad (SCM s, SCM len, SCM chr, SCM start, SCM end);
66 SCM scm_string_pad_right (SCM s, SCM len, SCM chr, SCM start, SCM end);
67 SCM scm_string_trim (SCM s, SCM char_pred, SCM start, SCM end);
68 SCM scm_string_trim_right (SCM s, SCM char_pred, SCM start, SCM end);
69 SCM scm_string_trim_both (SCM s, SCM char_pred, SCM start, SCM end);
70 SCM scm_string_fill_xS (SCM str, SCM chr, SCM start, SCM end);
71 SCM scm_string_compare (SCM s1, SCM s2, SCM proc_lt, SCM proc_eq, SCM proc_gt, SCM start1, SCM end1, SCM start2, SCM end2);
72 SCM scm_string_compare_ci (SCM s1, SCM s2, SCM proc_lt, SCM proc_eq, SCM proc_gt, SCM start1, SCM end1, SCM start2, SCM end2);
73 SCM scm_string_eq (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
74 SCM scm_string_neq (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
75 SCM scm_string_lt (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
76 SCM scm_string_gt (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
77 SCM scm_string_le (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
78 SCM scm_string_ge (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
79 SCM scm_string_ci_eq (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
80 SCM scm_string_ci_neq (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
81 SCM scm_string_ci_lt (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
82 SCM scm_string_ci_gt (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
83 SCM scm_string_ci_le (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
84 SCM scm_string_ci_ge (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
85 SCM scm_string_prefix_length (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
86 SCM scm_string_prefix_length_ci (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
87 SCM scm_string_suffix_length (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
88 SCM scm_string_suffix_length_ci (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
89 SCM scm_string_prefix_p (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
90 SCM scm_string_prefix_ci_p (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
91 SCM scm_string_suffix_p (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
92 SCM scm_string_suffix_ci_p (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
93 SCM scm_string_indexS (SCM s, SCM char_pred, SCM start, SCM end);
94 SCM scm_string_index_right (SCM s, SCM char_pred, SCM start, SCM end);
95 SCM scm_string_skip (SCM s, SCM char_pred, SCM start, SCM end);
96 SCM scm_string_skip_right (SCM s, SCM char_pred, SCM start, SCM end);
97 SCM scm_string_count (SCM s, SCM char_pred, SCM start, SCM end);
98 SCM scm_string_contains (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
99 SCM scm_string_contains_ci (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
100 SCM scm_string_upcase_xS (SCM str, SCM start, SCM end);
101 SCM scm_string_upcaseS (SCM str, SCM start, SCM end);
102 SCM scm_string_downcase_xS (SCM str, SCM start, SCM end);
103 SCM scm_string_downcaseS (SCM str, SCM start, SCM end);
104 SCM scm_string_titlecase_x (SCM str, SCM start, SCM end);
105 SCM scm_string_titlecase (SCM str, SCM start, SCM end);
106 SCM scm_string_reverse (SCM str, SCM start, SCM end);
107 SCM scm_string_reverse_x (SCM str, SCM start, SCM end);
108 SCM scm_string_append_shared (SCM ls);
109 SCM scm_string_concatenate (SCM ls);
110 SCM scm_reverse_string_concatenate (SCM ls, SCM final_string, SCM end);
111 SCM scm_string_concatenate_shared (SCM ls);
112 SCM scm_reverse_string_concatenate_shared (SCM ls, SCM final_string, SCM end);
113 SCM scm_string_map (SCM s, SCM proc, SCM start, SCM end);
114 SCM scm_string_map_x (SCM s, SCM proc, SCM start, SCM end);
115 SCM scm_string_fold (SCM kons, SCM knil, SCM s, SCM start, SCM end);
116 SCM scm_string_fold_right (SCM kons, SCM knil, SCM s, SCM start, SCM end);
117 SCM scm_string_unfold (SCM p, SCM f, SCM g, SCM seed, SCM base, SCM make_final);
118 SCM scm_string_unfold_right (SCM p, SCM f, SCM g, SCM seed, SCM base, SCM make_final);
119 SCM scm_string_for_each (SCM s, SCM proc, SCM start, SCM end);
120 SCM scm_xsubstring (SCM s, SCM from, SCM to, SCM start, SCM end);
121 SCM scm_string_xcopy_x (SCM target, SCM tstart, SCM s, SCM sfrom, SCM sto, SCM start, SCM end);
122 SCM scm_string_replace (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
123 SCM scm_string_tokenize (SCM s, SCM token_char, SCM start, SCM end);
124 SCM scm_string_filter (SCM s, SCM char_pred, SCM start, SCM end);
125 SCM scm_string_delete (SCM s, SCM char_pred, SCM start, SCM end);
126
127
128
129
130
131 #endif /* SCM_SRFI_13_H */