2001-06-27 13:18:40 +00:00
|
|
|
/* srfi-4.c --- Homogeneous numeric vector datatypes.
|
|
|
|
|
*
|
2008-09-13 15:35:27 +02:00
|
|
|
* Copyright (C) 2001, 2004, 2006, 2008 Free Software Foundation, Inc.
|
2002-03-14 04:07:16 +00:00
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-03-14 04:07:16 +00:00
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-06-27 13:18:40 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2003-04-05 19:15:35 +00:00
|
|
|
* Lesser General Public License for more details.
|
2002-03-14 04:07:16 +00:00
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2005-05-23 19:57:22 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
*/
|
2001-06-27 13:18:40 +00:00
|
|
|
|
2004-10-26 17:01:35 +00:00
|
|
|
/* This file is now empty since all its procedures are now in the
|
|
|
|
|
core. We keep the libguile-srfi-srfi-4.so library around anyway
|
|
|
|
|
since people might still be linking with it.
|
|
|
|
|
*/
|
2001-06-27 13:18:40 +00:00
|
|
|
|
2008-09-13 15:35:27 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <srfi/srfi-4.h>
|
2001-06-27 13:18:40 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
scm_init_srfi_4 (void)
|
|
|
|
|
{
|
|
|
|
|
}
|
* srfi-4.c: Minor cleanups.
* srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
(scm_char_set_unfold_x, scm_char_set_for_each)
(scm_char_set_map, scm_char_set_filter)
(scm_char_set_filter_x, scm_char_set_count)
(scm_char_set_every, scm_char_set_any): Replace calls to
scm_apply() with the corresponding scm_call_N() functions.
* srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
(scm_char_set_unfold, scm_char_set_unfold_x)
(scm_char_set_map, scm_char_set_diff_plus_intersection)
(scm_char_set_diff_plus_intersection_x): Replace deprecated macros
SCM_LISTN with calls to scm_list_N().
* srfi-13.c (scm_string_tabulate, scm_string_map)
(scm_string_map_x, scm_string_unfold)
(scm_string_unfold_right): Replace deprecated macros SCM_LISTN
with calls to scm_list_N().
* srfi-13.c (scm_string_any, scm_string_every),
(scm_string_tabulate, scm_string_trim),
(scm_string_trim_right, scm_string_trim_both),
(scm_string_compare, scm_string_compare_ci),
(scm_string_indexS, scm_string_index_right),
(scm_string_skip, scm_string_skip_right, scm_string_count),
(scm_string_map, scm_string_map_x, scm_string_fold),
(scm_string_fold_right, scm_string_unfold),
(scm_string_unfold_right, scm_string_for_each),
(scm_string_filter, scm_string_delete): Replace calls to
scm_apply() with the corresponding scm_call_N() functions.
2001-06-28 16:39:00 +00:00
|
|
|
|
|
|
|
|
/* End of srfi-4.c. */
|