home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / fontutils-0.6-base.tgz / fontutils-0.6-base.tar / fsf / fontutils / include / xstat.h < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  73 lines

  1. /* xstat.h: declarations for using stat(2).
  2.  
  3. Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #ifndef XSTAT_H
  20. #define XSTAT_H
  21.  
  22. #include "types.h"
  23. #include <sys/stat.h>
  24.  
  25.  
  26. /* Predicates for testing file attributes.  */
  27.  
  28. #if !defined(S_ISBLK) && defined(S_IFBLK)
  29. #define    S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  30. #endif
  31. #if !defined(S_ISCHR) && defined(S_IFCHR)
  32. #define    S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  33. #endif
  34. #if !defined(S_ISDIR) && defined(S_IFDIR)
  35. #define    S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  36. #endif
  37. #if !defined(S_ISREG) && defined(S_IFREG)
  38. #define    S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  39. #endif
  40. #if !defined(S_ISFIFO) && defined(S_IFIFO)
  41. #define    S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
  42. #endif
  43. #if !defined(S_ISLNK) && defined(S_IFLNK)
  44. #define    S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  45. #endif
  46. #if !defined(S_ISSOCK) && defined(S_IFSOCK)
  47. #define    S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  48. #endif
  49. #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
  50. #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
  51. #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
  52. #endif
  53. #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
  54. #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
  55. #endif
  56.  
  57. /* Two files are indistinguishable if they are on the same device
  58.    and have the same inode.  This checks two stat buffers for that.  */
  59. #define SAME_FILE_P(s1, s2) \
  60.   ((s1).st_ino == (s2).st_ino && (s1).st_dev == (s2).st_dev)
  61.  
  62. /* Does stat(2) on PATH, and aborts if the stat fails.  */
  63. extern struct stat xstat P1H(string path);
  64.  
  65. /* Ditto, for lstat(2) (except that lstat might not exist).  */
  66. #ifdef S_ISLNK
  67. extern struct stat xlstat P1H(string path);
  68. #else
  69. #define xlstat xstat
  70. #endif
  71.  
  72. #endif /* not XSTAT_H */
  73.