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
|
|
|
|
2003-02-22 02:15:53 -06:00
|
|
|
/* Convenience macros */
|
|
|
|
|
2018-04-22 18:09:03 -05:00
|
|
|
#if defined(scm_to_utf8_string) && SCM_MAJOR_VERSION >= 2
|
|
|
|
#undef scm_to_utf8_string
|
|
|
|
#undef scm_from_utf8_string
|
2018-04-24 19:57:52 -05:00
|
|
|
#undef SWIG_scm2str
|
|
|
|
#define SWIG_scm2str(s) scm_to_utf8_string(s)
|
|
|
|
#undef SWIG_str02scm
|
|
|
|
#define SWIG_str02scm(str) \
|
|
|
|
str ? scm_from_utf8_string(str) : SCM_BOOL_F
|
2018-04-22 18:09:03 -05:00
|
|
|
#endif
|
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))
|