1999-07-27 19:09:31 +00:00
|
|
|
|
/* classes: h_files */
|
|
|
|
|
|
|
2001-08-31 10:42:19 +00:00
|
|
|
|
#ifndef SCM_LANG_H
|
|
|
|
|
|
#define SCM_LANG_H
|
|
|
|
|
|
|
2008-05-14 05:20:47 +02:00
|
|
|
|
/* Copyright (C) 1998, 2004, 2006, 2008 Free Software Foundation, Inc.
|
2001-08-31 10:42:19 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
|
* as published by the Free Software Foundation; either version 3 of
|
|
|
|
|
|
* the License, or (at your option) any later version.
|
2001-08-31 10:42:19 +00:00
|
|
|
|
*
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-31 10:42:19 +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
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
|
* 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
|
*/
|
2001-08-31 10:42:19 +00:00
|
|
|
|
|
1999-07-27 19:09:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libguile/__scm.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-27 20:09:08 +00:00
|
|
|
|
#if SCM_ENABLE_ELISP
|
2002-01-22 23:31:39 +00:00
|
|
|
|
|
2004-07-27 15:41:49 +00:00
|
|
|
|
#define SCM_NILP(x) (scm_is_eq ((x), SCM_ELISP_NIL))
|
2002-01-22 23:31:39 +00:00
|
|
|
|
|
2008-05-14 05:20:47 +02:00
|
|
|
|
SCM_INTERNAL void scm_init_lang (void);
|
2002-12-29 01:17:39 +00:00
|
|
|
|
|
2002-01-22 23:31:39 +00:00
|
|
|
|
#else /* ! SCM_ENABLE_ELISP */
|
2002-12-29 01:17:39 +00:00
|
|
|
|
|
2002-01-22 23:31:39 +00:00
|
|
|
|
#define SCM_NILP(x) 0
|
2002-12-29 01:17:39 +00:00
|
|
|
|
|
2002-01-22 23:31:39 +00:00
|
|
|
|
#endif /* ! SCM_ENABLE_ELISP */
|
|
|
|
|
|
|
2004-09-22 17:41:37 +00:00
|
|
|
|
#define SCM_NULL_OR_NIL_P(x) (scm_is_null (x) || SCM_NILP (x))
|
1999-07-27 19:09:31 +00:00
|
|
|
|
|
2001-08-31 10:42:19 +00:00
|
|
|
|
#endif /* SCM_LANG_H */
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|