/usr/include/libgeda/libgedaguile.h is in libgeda-dev 1:1.8.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /* gEDA - GPL Electronic Design Automation
* libgeda - gEDA's library - Scheme API
* Copyright (C) 2010-2012 Peter Brett <peter@peter-b.co.uk>
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111 USA
*/
/*!
* \file libgedaguile.h
* \ingroup guile_c_iface
* Scheme API public declarations and definitions.
* \warning Don't include from libgeda.h: should only be included
* by source files that need to use the Scheme API.
*/
/* Initialise the Scheme API. */
void edascm_init ();
/* Get the value of the #TOPLEVEL fluid. */
TOPLEVEL *edascm_c_current_toplevel ();
/* Set the #TOPLEVEL fluid in the current dynamic context. */
void edascm_dynwind_toplevel (TOPLEVEL *toplevel);
/* Set the current #TOPLEVEL temporarily. */
SCM edascm_c_with_toplevel (TOPLEVEL *toplevel, SCM (*func)(void *),
void *user_data);
/* Create a Guile value from a page structure. */
SCM edascm_from_page (PAGE *page);
/* Create a Guile value from an object structure. */
SCM edascm_from_object (OBJECT *object);
/* Retrieve a page structure from a Guile value. */
PAGE *edascm_to_page (SCM smob);
/* Retrieve an object structure from a Guile value. */
OBJECT *edascm_to_object (SCM smob);
/* Test if smob is a gEDA page. */
int edascm_is_page (SCM smob);
/* Test if smob is a gEDA object. */
int edascm_is_object (SCM smob);
/* Set whether a gEDA object may be garbage collected. */
void edascm_c_set_gc (SCM smob, int gc);
|