home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / textutils-1.19-src.tgz / tar.out / fsf / textutils / src / system.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  6KB  |  224 lines

  1. /* system-dependent definitions for textutils programs.
  2.    Copyright (C) 89, 90, 91 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  17.  
  18. /* Include sys/types.h before this file.  */
  19.  
  20. #include <sys/stat.h>
  21.  
  22. #ifdef STAT_MACROS_BROKEN
  23. #undef S_ISBLK
  24. #undef S_ISCHR
  25. #undef S_ISDIR
  26. #undef S_ISFIFO
  27. #undef S_ISLNK
  28. #undef S_ISMPB
  29. #undef S_ISMPC
  30. #undef S_ISNWK
  31. #undef S_ISREG
  32. #undef S_ISSOCK
  33. #endif /* STAT_MACROS_BROKEN.  */
  34.  
  35. #if !defined(S_ISBLK) && defined(S_IFBLK)
  36. #define    S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  37. #endif
  38. #if !defined(S_ISCHR) && defined(S_IFCHR)
  39. #define    S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  40. #endif
  41. #if !defined(S_ISDIR) && defined(S_IFDIR)
  42. #define    S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  43. #endif
  44. #if !defined(S_ISREG) && defined(S_IFREG)
  45. #define    S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  46. #endif
  47. #if !defined(S_ISFIFO) && defined(S_IFIFO)
  48. #define    S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
  49. #endif
  50. #if !defined(S_ISLNK) && defined(S_IFLNK)
  51. #define    S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  52. #endif
  53. #if !defined(S_ISSOCK) && defined(S_IFSOCK)
  54. #define    S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  55. #endif
  56. #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
  57. #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
  58. #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
  59. #endif
  60. #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
  61. #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
  62. #endif
  63. #if !defined(HAVE_MKFIFO)
  64. #define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0))
  65. #endif
  66.  
  67. #ifdef HAVE_UNISTD_H
  68. #include <unistd.h>
  69. #endif
  70.  
  71. #ifndef _POSIX_VERSION
  72. off_t lseek ();
  73. #endif
  74.  
  75. #ifndef STDIN_FILENO
  76. #define STDIN_FILENO 0
  77. #endif
  78.  
  79. #ifndef STDOUT_FILENO
  80. #define STDOUT_FILENO 1
  81. #endif
  82.  
  83. #ifndef STDERR_FILENO
  84. #define STDERR_FILENO 2
  85. #endif
  86.  
  87. /* Don't use bcopy!  Use memmove if source and destination may overlap,
  88.    memcpy otherwise.  */
  89.  
  90. #ifdef HAVE_STRING_H
  91. # if !STDC_HEADERS && HAVE_MEMORY_H
  92. #  include <memory.h>
  93. # endif
  94. # include <string.h>
  95. #else
  96. # include <strings.h>
  97. char *memchr ();
  98. #endif
  99.  
  100. #include <errno.h>
  101. #ifndef errno
  102. extern int errno;
  103. #endif
  104.  
  105. #ifdef STDC_HEADERS
  106. #include <stdlib.h>
  107. #else
  108. char *getenv ();
  109. #endif
  110.  
  111. /* The following test is to work around the gross typo in
  112.    systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
  113.    is defined to 0, not 1.  */
  114. #if !EXIT_FAILURE
  115. # undef EXIT_FAILURE
  116. # define EXIT_FAILURE 1
  117. #endif
  118.  
  119. #ifndef EXIT_SUCCESS
  120. # define EXIT_SUCCESS 0
  121. #endif
  122.  
  123. #ifdef HAVE_FCNTL_H
  124. #include <fcntl.h>
  125. #else
  126. #include <sys/file.h>
  127. #endif
  128.  
  129. #if !defined(SEEK_SET)
  130. #define SEEK_SET 0
  131. #define SEEK_CUR 1
  132. #define SEEK_END 2
  133. #endif
  134.  
  135. #ifndef _POSIX_SOURCE
  136. #include <sys/param.h>
  137. #endif
  138.  
  139. /* Get or fake the disk device blocksize.
  140.    Usually defined by sys/param.h (if at all).  */
  141. #if !defined(DEV_BSIZE) && defined(BSIZE)
  142. #define DEV_BSIZE BSIZE
  143. #endif
  144. #if !defined(DEV_BSIZE) && defined(BBSIZE) /* SGI */
  145. #define DEV_BSIZE BBSIZE
  146. #endif
  147. #ifndef DEV_BSIZE
  148. #define DEV_BSIZE 4096
  149. #endif
  150.  
  151. /* Extract or fake data from a `struct stat'.
  152.    ST_BLKSIZE: Optimal I/O blocksize for the file, in bytes. */
  153. #ifndef HAVE_ST_BLKSIZE
  154. # define ST_BLKSIZE(statbuf) DEV_BSIZE
  155. #else /* HAVE_ST_BLKSIZE */
  156. /* Some systems, like Sequents, return st_blksize of 0 on pipes. */
  157. # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \
  158.                    ? (statbuf).st_blksize : DEV_BSIZE)
  159. #endif /* HAVE_ST_BLKSIZE */
  160.  
  161. #ifndef S_ISLNK
  162. #define lstat stat
  163. #endif
  164.  
  165. #ifndef RETSIGTYPE
  166. #define RETSIGTYPE void
  167. #endif
  168.  
  169. #include <ctype.h>
  170.  
  171. #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
  172. #define IN_CTYPE_DOMAIN(c) 1
  173. #else
  174. #define IN_CTYPE_DOMAIN(c) isascii(c)
  175. #endif
  176.  
  177. #ifdef isblank
  178. #define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
  179. #else
  180. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  181. #endif
  182. #ifdef isgraph
  183. #define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
  184. #else
  185. #define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
  186. #endif
  187.  
  188. #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
  189. #define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
  190. #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
  191. #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
  192. #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
  193. #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
  194. #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
  195. #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
  196. #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
  197. #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
  198.  
  199. #ifndef __P
  200. # if PROTOTYPES
  201. #  define __P(Args) Args
  202. # else
  203. #  define __P(Args) ()
  204. # endif
  205. #endif
  206.  
  207. /* Take care of NLS matters.  */
  208.  
  209. #if HAVE_LOCALE_H
  210. # include <locale.h>
  211. #endif
  212. #if !HAVE_SETLOCALE
  213. # define setlocale(Category, Locale) /* empty */
  214. #endif
  215.  
  216. #if ENABLE_NLS
  217. # include <libintl.h>
  218. # define _(Text) gettext (Text)
  219. #else
  220. # define bindtextdomain(Domain, Directory) /* empty */
  221. # define textdomain(Domain) /* empty */
  222. # define _(Text) Text
  223. #endif
  224.