1996-07-25 22:56:11 +00:00
|
|
|
|
/* classes: h_files */
|
|
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
#ifndef SCM_LOAD_H
|
|
|
|
|
|
#define SCM_LOAD_H
|
|
|
|
|
|
|
2008-05-14 05:20:47 +02:00
|
|
|
|
/* Copyright (C) 1995,1996,1998,2000,2001, 2006, 2008 Free Software Foundation, Inc.
|
2001-08-31 12:13:50 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-08-31 12:13:50 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
1996-07-25 22:56:11 +00:00
|
|
|
|
* 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 12:13:50 +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
|
2005-05-23 19:57:22 +00:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
|
*/
|
2001-08-31 12:13:50 +00:00
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
|
1996-09-10 19:08:54 +00:00
|
|
|
|
#include "libguile/__scm.h"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_parse_path (SCM path, SCM tail);
|
|
|
|
|
|
SCM_API SCM scm_primitive_load (SCM filename);
|
|
|
|
|
|
SCM_API SCM scm_c_primitive_load (const char *filename);
|
|
|
|
|
|
SCM_API SCM scm_sys_package_data_dir (void);
|
|
|
|
|
|
SCM_API SCM scm_sys_library_dir (void);
|
|
|
|
|
|
SCM_API SCM scm_sys_site_dir (void);
|
2008-09-02 00:08:26 -07:00
|
|
|
|
SCM_API SCM scm_search_path (SCM path, SCM filename, SCM exts, SCM require_exts);
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_sys_search_load_path (SCM filename);
|
2009-06-03 09:48:16 +02:00
|
|
|
|
SCM_API SCM scm_primitive_load_path (SCM filename, SCM exception_on_not_found);
|
2001-11-02 00:19:12 +00:00
|
|
|
|
SCM_API SCM scm_c_primitive_load_path (const char *filename);
|
2008-05-14 05:20:47 +02:00
|
|
|
|
SCM_INTERNAL void scm_init_load_path (void);
|
|
|
|
|
|
SCM_INTERNAL void scm_init_load (void);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2001-08-31 12:13:50 +00:00
|
|
|
|
#endif /* SCM_LOAD_H */
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|