home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / a / txtutils / textutil.9 / textutil / textutils-1.9 / src / system.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-23  |  4.9 KB  |  201 lines

  1. /* system-dependent definitions for textutils programs.
  2.    Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Include sys/types.h before this file.  */
  19.  
  20. #include <sys/stat.h>
  21.  
  22. #ifdef    STAT_MACROS_BROKEN
  23. #ifdef S_ISBLK
  24. #undef S_ISBLK
  25. #endif
  26. #ifdef S_ISCHR
  27. #undef S_ISCHR
  28. #endif
  29. #ifdef S_ISDIR
  30. #undef S_ISDIR
  31. #endif
  32. #ifdef S_ISFIFO
  33. #undef S_ISFIFO
  34. #endif
  35. #ifdef S_ISLNK
  36. #undef S_ISLNK
  37. #endif
  38. #ifdef S_ISMPB
  39. #undef S_ISMPB
  40. #endif
  41. #ifdef S_ISMPC
  42. #undef S_ISMPC
  43. #endif
  44. #ifdef S_ISNWK
  45. #undef S_ISNWK
  46. #endif
  47. #ifdef S_ISREG
  48. #undef S_ISREG
  49. #endif
  50. #ifdef S_ISSOCK
  51. #undef S_ISSOCK
  52. #endif
  53. #endif    /* STAT_MACROS_BROKEN.  */
  54.  
  55. #ifndef S_ISREG            /* Doesn't have POSIX.1 stat stuff. */
  56. #define mode_t unsigned short
  57. #endif
  58. #if !defined(S_ISBLK) && defined(S_IFBLK)
  59. #define    S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  60. #endif
  61. #if !defined(S_ISCHR) && defined(S_IFCHR)
  62. #define    S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  63. #endif
  64. #if !defined(S_ISDIR) && defined(S_IFDIR)
  65. #define    S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  66. #endif
  67. #if !defined(S_ISREG) && defined(S_IFREG)
  68. #define    S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  69. #endif
  70. #if !defined(S_ISFIFO) && defined(S_IFIFO)
  71. #define    S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
  72. #endif
  73. #if !defined(S_ISLNK) && defined(S_IFLNK)
  74. #define    S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  75. #endif
  76. #if !defined(S_ISSOCK) && defined(S_IFSOCK)
  77. #define    S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  78. #endif
  79. #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
  80. #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
  81. #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
  82. #endif
  83. #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
  84. #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
  85. #endif
  86. #if !defined(HAVE_MKFIFO)
  87. #define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0))
  88. #endif
  89.  
  90. #ifdef HAVE_UNISTD_H
  91. #include <unistd.h>
  92. #endif
  93. #ifndef _POSIX_VERSION
  94. off_t lseek ();
  95. #endif
  96.  
  97. #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
  98. #if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
  99. #include <memory.h>
  100. #endif
  101. #include <string.h>
  102. #ifndef index
  103. #define index strchr
  104. #endif
  105. #ifndef rindex
  106. #define rindex strrchr
  107. #endif
  108. /* Don't define bcopy; we need one that can handle overlaps.  */
  109. #ifndef bzero
  110. #define bzero(s, n) memset ((s), 0, (n))
  111. #endif
  112. #ifndef bcmp
  113. #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
  114. #endif
  115. #else
  116. #include <strings.h>
  117. char *memchr ();
  118. #endif
  119.  
  120. #include <errno.h>
  121. #ifdef STDC_HEADERS
  122. #include <stdlib.h>
  123. #else
  124. char *getenv ();
  125. extern int errno;
  126. #endif
  127.  
  128. #if defined(HAVE_FCNTL_H) || defined(_POSIX_VERSION)
  129. #include <fcntl.h>
  130. #else
  131. #include <sys/file.h>
  132. #endif
  133.  
  134. #if !defined(SEEK_SET)
  135. #define SEEK_SET 0
  136. #define SEEK_CUR 1
  137. #define SEEK_END 2
  138. #endif
  139.  
  140. #ifndef _POSIX_SOURCE
  141. #include <sys/param.h>
  142. #endif
  143.  
  144. /* Get or fake the disk device blocksize.
  145.    Usually defined by sys/param.h (if at all).  */
  146. #if !defined(DEV_BSIZE) && defined(BSIZE)
  147. #define DEV_BSIZE BSIZE
  148. #endif
  149. #if !defined(DEV_BSIZE) && defined(BBSIZE) /* SGI */
  150. #define DEV_BSIZE BBSIZE
  151. #endif
  152. #ifndef DEV_BSIZE
  153. #define DEV_BSIZE 4096
  154. #endif
  155.  
  156. /* Extract or fake data from a `struct stat'.
  157.    ST_BLKSIZE: Optimal I/O blocksize for the file, in bytes. */
  158. #ifndef HAVE_ST_BLKSIZE
  159. # define ST_BLKSIZE(statbuf) DEV_BSIZE
  160. #else /* HAVE_ST_BLKSIZE */
  161. /* Some systems, like Sequents, return st_blksize of 0 on pipes. */
  162. # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \
  163.                    ? (statbuf).st_blksize : DEV_BSIZE)
  164. #endif /* HAVE_ST_BLKSIZE */
  165.  
  166. #ifndef S_ISLNK
  167. #define lstat stat
  168. #endif
  169.  
  170. #ifndef RETSIGTYPE
  171. #define RETSIGTYPE void
  172. #endif
  173.  
  174. #include <ctype.h>
  175.  
  176. #ifndef isascii
  177. #define isascii(c) 1
  178. #endif
  179.  
  180. #ifdef isblank
  181. #define ISBLANK(c) (isascii (c) && isblank (c))
  182. #else
  183. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  184. #endif
  185. #ifdef isgraph
  186. #define ISGRAPH(c) (isascii (c) && isgraph (c))
  187. #else
  188. #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
  189. #endif
  190.  
  191. #define ISPRINT(c) (isascii (c) && isprint (c))
  192. #define ISDIGIT(c) (isascii (c) && isdigit (c))
  193. #define ISALNUM(c) (isascii (c) && isalnum (c))
  194. #define ISALPHA(c) (isascii (c) && isalpha (c))
  195. #define ISCNTRL(c) (isascii (c) && iscntrl (c))
  196. #define ISLOWER(c) (isascii (c) && islower (c))
  197. #define ISPUNCT(c) (isascii (c) && ispunct (c))
  198. #define ISSPACE(c) (isascii (c) && isspace (c))
  199. #define ISUPPER(c) (isascii (c) && isupper (c))
  200. #define ISXDIGIT(c) (isascii (c) && isxdigit (c))
  201.