2000-06-06 01:08:58 -05:00
|
|
|
/********************************************************************\
|
2019-10-05 09:48:37 -05:00
|
|
|
* glib-guile.h -- glib helper functions for guile *
|
2001-08-07 18:29:04 -05:00
|
|
|
* Copyright (C) 2000 Linas Vepstas *
|
2010-02-17 23:31:54 -06:00
|
|
|
* Copyright (C) 2006 Chris Shoemaker <c.shoemaker@cox.net> *
|
2000-04-30 00:20:37 -05:00
|
|
|
* *
|
|
|
|
* 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*
|
2000-06-06 01:08:58 -05:00
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
2005-11-16 23:35:02 -06:00
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
2000-04-30 00:20:37 -05:00
|
|
|
* *
|
|
|
|
\********************************************************************/
|
|
|
|
|
2019-10-05 09:48:37 -05:00
|
|
|
#ifndef GLIB_GUILE_H
|
|
|
|
#define GLIB_GUILE_H
|
2000-04-30 00:20:37 -05:00
|
|
|
|
2000-06-21 17:41:06 -05:00
|
|
|
#include <glib.h>
|
2003-02-22 02:15:53 -06:00
|
|
|
#include <libguile.h>
|
2000-06-02 04:00:31 -05:00
|
|
|
|
2023-01-23 07:57:38 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-02-16 17:30:26 -06:00
|
|
|
SCM gnc_glist_to_scm_list(GList *glist, const gchar *wct);
|
2001-08-07 18:29:04 -05:00
|
|
|
GList* gnc_scm_list_to_glist(SCM wcp_list);
|
|
|
|
|
|
|
|
SCM gnc_glist_string_to_scm(GList * list);
|
|
|
|
GList * gnc_scm_to_glist_string(SCM list);
|
|
|
|
int gnc_glist_string_p(SCM list);
|
|
|
|
|
2006-10-15 14:02:05 -05:00
|
|
|
GSList * gnc_scm_to_gslist_string(SCM list);
|
|
|
|
|
2023-01-23 07:57:38 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-04-30 00:20:37 -05:00
|
|
|
#endif
|