home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / txtut122.zip / textutil / src / system.h < prev    next >
C/C++ Source or Header  |  1996-12-14  |  7KB  |  255 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. /* Jim Meyering writes:
  172.  
  173.    "... Some ctype macros are valid only for character codes that
  174.    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
  175.    using /bin/cc or gcc but without giving an ansi option).  So, all
  176.    ctype uses should be through macros like ISPRINT...  If
  177.    STDC_HEADERS is defined, then autoconf has verified that the ctype
  178.    macros don't need to be guarded with references to isascii. ...
  179.    Defining isascii to 1 should let any compiler worth its salt
  180.    eliminate the && through constant folding."
  181.  
  182.    Bruno Haible adds:
  183.  
  184.    "... Furthermore, isupper(c) etc. have an undefined result if c is
  185.    outside the range -1 <= c <= 255. One is tempted to write isupper(c)
  186.    with c being of type `char', but this is wrong if c is an 8-bit
  187.    character >= 128 which gets sign-extended to a negative value.
  188.    The macro ISUPPER protects against this as well."  */
  189.  
  190. #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
  191. #define IN_CTYPE_DOMAIN(c) 1
  192. #else
  193. #define IN_CTYPE_DOMAIN(c) isascii(c)
  194. #endif
  195.  
  196. #ifdef isblank
  197. #define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
  198. #else
  199. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  200. #endif
  201. #ifdef isgraph
  202. #define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
  203. #else
  204. #define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
  205. #endif
  206.  
  207. #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
  208. #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
  209. #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
  210. #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
  211. #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
  212. #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
  213. #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
  214. #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
  215. #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
  216. #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
  217.  
  218. /* ISDIGIT differs from ISDIGIT_LOCALE, as follows:
  219.    - Its arg may be any int or unsigned int; it need not be an unsigned char.
  220.    - It's guaranteed to evaluate its argument exactly once.
  221.    - It's typically faster.
  222.    Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
  223.    only '0' through '9' are digits.  Prefer ISDIGIT to ISDIGIT_LOCALE unless
  224.    it's important to use the locale's definition of `digit' even when the
  225.    host does not conform to Posix.  */
  226. #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
  227.  
  228. #ifndef __P
  229. # if PROTOTYPES
  230. #  define __P(Args) Args
  231. # else
  232. #  define __P(Args) ()
  233. # endif
  234. #endif
  235.  
  236. /* Take care of NLS matters.  */
  237.  
  238. #if HAVE_LOCALE_H
  239. # include <locale.h>
  240. #endif
  241. #if !HAVE_SETLOCALE
  242. # define setlocale(Category, Locale) /* empty */
  243. #endif
  244.  
  245. #if ENABLE_NLS
  246. # include <libintl.h>
  247. # define _(Text) gettext (Text)
  248. #else
  249. # undef bindtextdomain
  250. # define bindtextdomain(Domain, Directory) /* empty */
  251. # undef textdomain
  252. # define textdomain(Domain) /* empty */
  253. # define _(Text) Text
  254. #endif
  255.