2003-02-22 02:15:53 -06:00
|
|
|
/********************************************************************\
|
2012-12-15 11:58:58 -06:00
|
|
|
* guile-mappings.h - Guile version compatibility mappings *
|
2003-02-22 02:15:53 -06:00
|
|
|
* Copyright (C) 2003, David Hampton *
|
|
|
|
* *
|
|
|
|
* 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 General Public License*
|
|
|
|
* along with this program; if not, write to the Free Software *
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
|
|
|
\********************************************************************/
|
|
|
|
|
2011-08-04 04:41:04 -05:00
|
|
|
#include <libguile.h> /* for SCM_MAJOR_VERSION etc */
|
2010-01-04 14:21:22 -06:00
|
|
|
|
2011-03-21 10:10:40 -05:00
|
|
|
/* Give Guile 1.8 a 2.0-like interface */
|
2013-12-13 14:21:41 -06:00
|
|
|
#if (SCM_MAJOR_VERSION < 2)
|
2010-04-27 15:46:25 -05:00
|
|
|
# define scm_c_string_length scm_i_string_length
|
2013-12-13 14:22:01 -06:00
|
|
|
#endif
|
|
|
|
#ifndef scm_from_utf8_string
|
2013-12-13 14:21:41 -06:00
|
|
|
# define scm_from_utf8_string scm_from_locale_string
|
|
|
|
# define scm_to_utf8_string scm_to_locale_string
|
2010-01-04 14:21:22 -06:00
|
|
|
#endif
|
2010-12-30 05:33:31 -06:00
|
|
|
|
2003-02-22 02:15:53 -06:00
|
|
|
/* Convenience macros */
|
|
|
|
|
2009-12-31 08:41:12 -06:00
|
|
|
#define scm_is_equal(obj1,obj2) scm_is_true(scm_equal_p(obj1,obj2))
|
|
|
|
#define scm_is_exact(obj) scm_is_true(scm_exact_p(obj))
|
|
|
|
#define scm_is_list(obj) scm_is_true(scm_list_p(obj))
|
|
|
|
#define scm_is_procedure(obj) scm_is_true(scm_procedure_p(obj))
|