]> git.donarmstrong.com Git - lilypond.git/blob - guile18/libguile/filesys.h
Import guile-1.8 as multiple upstream tarball component
[lilypond.git] / guile18 / libguile / filesys.h
1 /* classes: h_files */
2
3 #ifndef SCM_FILESYS_H
4 #define SCM_FILESYS_H
5
6 /* Copyright (C) 1995,1997,1998,1999,2000,2001, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 \f
24
25 #include "libguile/__scm.h"
26
27 \f
28
29 SCM_API scm_t_bits scm_tc16_dir;
30
31 #define SCM_DIR_FLAG_OPEN (1L << 16)
32
33 #define SCM_DIRP(x) (!SCM_IMP (x) && (SCM_TYP16 (x) == scm_tc16_dir))
34 #define SCM_DIR_OPEN_P(x) (SCM_CELL_WORD_0 (x) & SCM_DIR_FLAG_OPEN)
35
36 \f
37
38 SCM_API SCM scm_chown (SCM object, SCM owner, SCM group);
39 SCM_API SCM scm_chmod (SCM object, SCM mode);
40 SCM_API SCM scm_umask (SCM mode);
41 SCM_API SCM scm_open_fdes (SCM path, SCM flags, SCM mode);
42 SCM_API SCM scm_open (SCM path, SCM flags, SCM mode);
43 SCM_API SCM scm_close (SCM fd_or_port);
44 SCM_API SCM scm_close_fdes (SCM fd);
45 SCM_API SCM scm_stat (SCM object);
46 SCM_API SCM scm_link (SCM oldpath, SCM newpath);
47 SCM_API SCM scm_rename (SCM oldname, SCM newname);
48 SCM_API SCM scm_delete_file (SCM str);
49 SCM_API SCM scm_mkdir (SCM path, SCM mode);
50 SCM_API SCM scm_rmdir (SCM path);
51 SCM_API SCM scm_directory_stream_p (SCM obj);
52 SCM_API SCM scm_opendir (SCM dirname);
53 SCM_API SCM scm_readdir (SCM port);
54 SCM_API SCM scm_rewinddir (SCM port);
55 SCM_API SCM scm_closedir (SCM port);
56 SCM_API SCM scm_chdir (SCM str);
57 SCM_API SCM scm_getcwd (void);
58 SCM_API SCM scm_select (SCM reads, SCM writes, SCM excepts, SCM secs, SCM msecs);
59 SCM_API SCM scm_fcntl (SCM object, SCM cmd, SCM value);
60 SCM_API SCM scm_fsync (SCM object);
61 SCM_API SCM scm_symlink (SCM oldpath, SCM newpath);
62 SCM_API SCM scm_readlink (SCM path);
63 SCM_API SCM scm_lstat (SCM str);
64 SCM_API SCM scm_copy_file (SCM oldfile, SCM newfile);
65 SCM_API SCM scm_dirname (SCM filename);
66 SCM_API SCM scm_basename (SCM filename, SCM suffix);
67
68 SCM_API void scm_init_filesys (void);
69
70 #endif  /* SCM_FILESYS_H */
71
72 /*
73   Local Variables:
74   c-file-style: "gnu"
75   End:
76 */