2 /* Copyright (C) 1989-2000, 2001, 2002 Free Software Foundation, Inc.
3 Written by James Clark (jjc@jclark.com)
5 This file is part of groff.
7 groff is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License along
18 with groff; see the file COPYING. If not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
29 const char *i_to_a(int);
30 const char *ui_to_a(unsigned int);
31 const char *if_to_a(int, int);
34 /* stdio.h on IRIX, OSF/1, emx, and UWIN include getopt.h */
35 /* unistd.h on CYGWIN includes getopt.h */
37 #if !(defined(__sgi) \
38 || (defined(__osf__) && defined(__alpha)) \
41 || defined(__CYGWIN__))
42 #include <groff-getopt.h>
47 char *strsave(const char *s
);
48 int is_prime(unsigned);
59 int snprintf(char *, size_t, const char *, /*args*/ ...);
60 int vsnprintf(char *, size_t, const char *, va_list);
65 /* since mkstemp() is defined as a real C++ function if taken from
66 groff's mkstemp.cc we need a declaration */
67 int mkstemp(char *tmpl
);
68 #endif /* HAVE_MKSTEMP */
70 int mksdir(char *tmpl
);
72 FILE *xtmpfile(char **namep
= 0,
73 const char *postfix_long
= 0, const char *postfix_short
= 0,
75 char *xtmptemplate(const char *postfix_long
, const char *postfix_short
);
77 #ifdef NEED_DECLARATION_POPEN
78 extern "C" { FILE *popen(const char *, const char *); }
79 #endif /* NEED_DECLARATION_POPEN */
81 #ifdef NEED_DECLARATION_PCLOSE
82 extern "C" { int pclose (FILE *); }
83 #endif /* NEED_DECLARATION_PCLOSE */
85 size_t file_name_max(const char *fname
);
87 int interpret_lf_args(const char *p
);
89 extern char invalid_char_table
[];
91 inline int invalid_input_char(int c
)
93 return c
>= 0 && invalid_char_table
[c
];
96 #ifdef HAVE_STRCASECMP
97 #ifdef NEED_DECLARATION_STRCASECMP
99 // Ultrix4.3's string.h fails to declare this.
100 int strcasecmp(const char *, const char *);
102 #endif /* NEED_DECLARATION_STRCASECMP */
103 #endif /* HAVE_STRCASECMP */
105 #if !defined(_AIX) && !defined(sinix) && !defined(__sinix__)
106 #ifdef HAVE_STRNCASECMP
107 #ifdef NEED_DECLARATION_STRNCASECMP
109 // SunOS's string.h fails to declare this.
110 int strncasecmp(const char *, const char *, int);
112 #endif /* NEED_DECLARATION_STRNCASECMP */
113 #endif /* HAVE_STRNCASECMP */
114 #endif /* !_AIX && !sinix && !__sinix__ */
116 #ifndef HAVE_STRCASECMP
117 #define strcasecmp(a,b) strcmp((a),(b))
120 #ifndef HAVE_STRNCASECMP
121 #define strncasecmp(a,b,c) strncmp((a),(b),(c))
124 #ifdef HAVE_CC_LIMITS_H
126 #else /* not HAVE_CC_LIMITS_H */
127 #define INT_MAX 2147483647
128 #endif /* not HAVE_CC_LIMITS_H */
130 /* It's not safe to rely on people getting INT_MIN right (ie signed). */
136 #ifdef CFRONT_ANSI_BUG
138 /* This works around a bug in cfront 2.0 used with ANSI C compilers. */
140 #define INT_MIN ((long)(-INT_MAX-1))
142 #else /* not CFRONT_ANSI_BUG */
144 #define INT_MIN (-INT_MAX-1)
146 #endif /* not CFRONT_ANSI_BUG */
148 /* Maximum number of digits in the decimal representation of an int
149 (not including the -). */
151 #define INT_DIGITS 10
157 const double PI
= 3.14159265358979323846;
159 /* ad_delete deletes an array of objects with destructors;
160 a_delete deletes an array of objects without destructors */
162 #ifdef ARRAY_DELETE_NEEDS_SIZE
163 /* for 2.0 systems */
164 #define ad_delete(size) delete [size]
165 #define a_delete delete
166 #else /* not ARRAY_DELETE_NEEDS_SIZE */
167 /* for ARM systems */
168 #define ad_delete(size) delete []
169 #define a_delete delete []
170 #endif /* not ARRAY_DELETE_NEEDS_SIZE */