Adding EBCDIC code page 1047.
[s-roff.git] / src / include / lib.h
blob1947170919f6b1abae7f612b376920a4d3f0ee20
1 // -*- C++ -*-
2 /* Copyright (C) 1989-2000 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
10 version.
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
15 for more details.
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. */
21 extern "C" {
22 #ifndef strerror
23 char *strerror(int);
24 #endif
25 const char *i_to_a(int);
26 const char *if_to_a(int, int);
29 #include <groff-getopt.h>
31 char *strsave(const char *s);
32 int is_prime(unsigned);
34 #include <stdio.h>
36 FILE *xtmpfile(char **namep=0, char *postfix=0, int do_unlink=1);
37 char *xtmptemplate(char *extension=0);
39 #ifndef STDIO_H_DECLARES_POPEN
41 extern "C" { FILE *popen(const char *, const char *); }
43 #endif /* not STDIO_H_DECLARES_POPEN */
45 #ifndef STDIO_H_DECLARES_PCLOSE
47 extern "C" { int pclose (FILE *); }
49 #endif /* not STDIO_H_DECLARES_PCLOSE */
51 int interpret_lf_args(const char *p);
53 extern char illegal_char_table[];
55 inline int illegal_input_char(int c)
57 return c >= 0 && illegal_char_table[c];
60 #ifndef HAVE_STRCASECMP
61 #define strcasecmp(a,b) strcmp((a),(b))
62 #endif
64 #ifdef HAVE_CC_LIMITS_H
65 #include <limits.h>
66 #else /* not HAVE_CC_LIMITS_H */
67 #define INT_MAX 2147483647
68 #endif /* not HAVE_CC_LIMITS_H */
70 /* It's not safe to rely on people getting INT_MIN right (ie signed). */
72 #ifdef INT_MIN
73 #undef INT_MIN
74 #endif
76 #ifdef CFRONT_ANSI_BUG
78 /* This works around a bug in cfront 2.0 used with ANSI C compilers. */
80 #define INT_MIN ((long)(-INT_MAX-1))
82 #else /* not CFRONT_ANSI_BUG */
84 #define INT_MIN (-INT_MAX-1)
86 #endif /* not CFRONT_ANSI_BUG */
88 /* Maximum number of digits in the decimal representation of an int
89 (not including the -). */
91 #define INT_DIGITS 10
93 #ifdef PI
94 #undef PI
95 #endif
97 const double PI = 3.14159265358979323846;
99 /* ad_delete deletes an array of objects with destructors;
100 a_delete deletes an array of objects without destructors */
102 #ifdef ARRAY_DELETE_NEEDS_SIZE
103 /* for 2.0 systems */
104 #define ad_delete(size) delete [size]
105 #define a_delete delete
106 #else /* not ARRAY_DELETE_NEEDS_SIZE */
107 /* for ARM systems */
108 #define ad_delete(size) delete []
109 #define a_delete delete []
110 #endif /* not ARRAY_DELETE_NEEDS_SIZE */