123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef FILEMODE_H_
- # include <sys/types.h>
- # include <sys/stat.h>
- # if HAVE_DECL_STRMODE
- # include <string.h>
- # include <unistd.h>
- # endif
- # ifdef __cplusplus
- extern "C" {
- # endif
- # if !HAVE_DECL_STRMODE
- extern void strmode (mode_t mode, char *str);
- # endif
- extern void filemodestring (struct stat const *statp, char *str);
- # ifdef __cplusplus
- }
- # endif
- #endif
|