(environ): Use _NSGetEnviron in Darwin
[bpt/guile.git] / libguile / load.h
... / ...
CommitLineData
1/* classes: h_files */
2
3#ifndef SCM_LOAD_H
4#define SCM_LOAD_H
5
6/* Copyright (C) 1995,1996,1998,2000,2001 Free Software Foundation, Inc.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23\f
24
25#include "libguile/__scm.h"
26
27\f
28SCM_API SCM scm_internal_parse_path (char *path, SCM tail);
29SCM_API SCM scm_parse_path (SCM path, SCM tail);
30SCM_API void scm_init_load_path (void);
31SCM_API SCM scm_primitive_load (SCM filename);
32SCM_API SCM scm_c_primitive_load (const char *filename);
33SCM_API SCM scm_sys_package_data_dir (void);
34SCM_API SCM scm_sys_library_dir (void);
35SCM_API SCM scm_sys_site_dir (void);
36SCM_API SCM scm_search_path (SCM path, SCM filename, SCM exts);
37SCM_API SCM scm_sys_search_load_path (SCM filename);
38SCM_API SCM scm_primitive_load_path (SCM filename);
39SCM_API SCM scm_c_primitive_load_path (const char *filename);
40SCM_API void scm_init_load (void);
41
42#endif /* SCM_LOAD_H */
43
44/*
45 Local Variables:
46 c-file-style: "gnu"
47 End:
48*/