2 Copyright (C) 1995 Free Software Foundation, Inc.
4 This file is part of XEmacs.
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Synched up with: Not really in FSF. */
23 #ifndef INCLUDED_sysdir_h_
24 #define INCLUDED_sysdir_h_
30 #ifdef SYSV_SYSTEM_DIR
32 #elif defined (WIN32_NATIVE)
35 #elif defined (NONSYSTEM_DIR_LIBRARY)
39 #endif /* not NONSYSTEM_DIR_LIBRARY */
41 #ifdef SYSV_SYSTEM_DIR
42 # define DIRENTRY struct dirent
43 #else /* not SYSV_SYSTEM_DIR */
44 # define DIRENTRY struct direct
47 /* The d_nameln member of a struct dirent includes the '\0' character
48 on some systems, but not on others. What's worse, you can't tell
49 at compile-time which one it will be, since it really depends on
50 the sort of system providing the filesystem you're reading from,
51 not the system you are running on. Paul Eggert
52 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
53 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
54 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
56 (and Solaris 2 doesn't have a d_nameln member at all! Posix.1
57 doesn't specify it -- mrb)
59 Since applying strlen to the name always works, we'll just do that. */
60 #define NAMLEN(p) strlen (p->d_name)
63 # define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != '\0')
65 # define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
68 /* encapsulation: directory calls */
70 #ifdef ENCAPSULATE_CHDIR
71 int sys_chdir (const char *path);
73 #if defined (ENCAPSULATE_CHDIR) && !defined (DONT_ENCAPSULATE)
75 # define chdir sys_chdir
77 #if !defined (ENCAPSULATE_CHDIR) && defined (DONT_ENCAPSULATE)
78 # define sys_chdir chdir
81 #ifdef ENCAPSULATE_MKDIR
82 int sys_mkdir (const char *path, mode_t mode);
84 #if defined (ENCAPSULATE_MKDIR) && !defined (DONT_ENCAPSULATE)
86 # define mkdir sys_mkdir
88 #if !defined (ENCAPSULATE_MKDIR) && defined (DONT_ENCAPSULATE)
89 # define sys_mkdir mkdir
92 #ifdef ENCAPSULATE_OPENDIR
93 DIR *sys_opendir (const char *filename);
95 #if defined (ENCAPSULATE_OPENDIR) && !defined (DONT_ENCAPSULATE)
97 # define opendir sys_opendir
99 #if !defined (ENCAPSULATE_OPENDIR) && defined (DONT_ENCAPSULATE)
100 # define sys_opendir opendir
103 #ifdef ENCAPSULATE_READDIR
104 DIRENTRY *sys_readdir (DIR *dirp);
106 #if defined (ENCAPSULATE_READDIR) && !defined (DONT_ENCAPSULATE)
108 # define readdir sys_readdir
110 #if !defined (ENCAPSULATE_READDIR) && defined (DONT_ENCAPSULATE)
111 # define sys_readdir readdir
114 #ifdef ENCAPSULATE_CLOSEDIR
115 int sys_closedir (DIR *dirp);
117 #if defined (ENCAPSULATE_CLOSEDIR) && !defined (DONT_ENCAPSULATE)
119 # define closedir sys_closedir
121 #if !defined (ENCAPSULATE_CLOSEDIR) && defined (DONT_ENCAPSULATE)
122 # define sys_closedir closedir
125 #ifdef ENCAPSULATE_RMDIR
126 int sys_rmdir (const char *path);
128 #if defined (ENCAPSULATE_RMDIR) && !defined (DONT_ENCAPSULATE)
130 # define rmdir sys_rmdir
132 #if !defined (ENCAPSULATE_RMDIR) && defined (DONT_ENCAPSULATE)
133 # define sys_rmdir rmdir
136 #endif /* INCLUDED_sysdir_h_ */