6 ** This file is in the public domain, so clarified as of
7 ** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
11 * FreeBSD modifications: separate libc's privates from zic's.
12 * This makes it easier when we need to update one but not the other.
13 * I have removed all of the ifdef spaghetti which is not relevant to
16 * $FreeBSD: src/usr.sbin/zic/private.h,v 1.3 1999/08/28 01:21:18 peter Exp $
17 * $DragonFly: src/usr.sbin/zic/private.h,v 1.3 2004/02/29 16:55:28 joerg Exp $
23 ** This header is for use ONLY with the time conversion code.
24 ** There is no guarantee that it will remain unchanged,
25 ** or that it will remain at all.
26 ** Do NOT copy it to any system include directory.
35 ** Defaults for preprocessor symbols.
36 ** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'.
40 #define HAVE_GETTEXT 0
41 #endif /* !defined HAVE_GETTEXT */
44 #define HAVE_STRERROR 1
45 #endif /* !defined HAVE_STRERROR */
48 #define HAVE_SYMLINK 1
49 #endif /* !defined HAVE_SYMLINK */
52 #define HAVE_UNISTD_H 1
53 #endif /* !defined HAVE_UNISTD_H */
59 #include "sys/types.h" /* for time_t */
63 #include "limits.h" /* for CHAR_BIT */
69 #endif /* HAVE_GETTEXT - 0 */
72 #include "unistd.h" /* for F_OK and R_OK */
73 #endif /* HAVE_UNISTD_H - 0 */
75 #if !(HAVE_UNISTD_H - 0)
78 #endif /* !defined F_OK */
81 #endif /* !defined R_OK */
82 #endif /* !(HAVE_UNISTD_H - 0) */
84 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
85 #define is_digit(c) ((unsigned)(c) - '0' <= 9)
88 ** Private function declarations.
90 char *icalloc(int nelem
, int elsize
);
91 char *icatalloc(char *old
, const char *new);
92 char *icpyalloc(const char *string
);
94 void *irealloc(void * pointer
, int size
);
95 void icfree(char * pointer
);
96 void ifree(char * pointer
);
97 char *scheck(const char *string
, const char *format
);
100 ** Finally, some convenience items.
105 #endif /* !defined TRUE */
109 #endif /* !defined FALSE */
112 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
113 #endif /* !defined TYPE_BIT */
116 #define TYPE_SIGNED(type) (((type) -1) < 0)
117 #endif /* !defined TYPE_SIGNED */
119 #ifndef INT_STRLEN_MAXIMUM
121 ** 302 / 1000 is log10(2.0) rounded up.
122 ** Subtract one for the sign bit if the type is signed;
123 ** add one for integer division truncation;
124 ** add one more for a minus sign if the type is signed.
126 #define INT_STRLEN_MAXIMUM(type) \
127 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type))
128 #endif /* !defined INT_STRLEN_MAXIMUM */
137 #endif /* defined lint */
141 #endif /* defined __GNUC__ */
142 #endif /* !defined lint */
143 #endif /* !defined GNUC_or_lint */
147 #define INITIALIZE(x) ((x) = 0)
148 #endif /* defined GNUC_or_lint */
150 #define INITIALIZE(x)
151 #endif /* !defined GNUC_or_lint */
152 #endif /* !defined INITIALIZE */
155 ** For the benefit of GNU folk...
156 ** `_(MSGID)' uses the current locale's message library string for MSGID.
157 ** The default is to use gettext if available, and use MSGID otherwise.
162 #define _(msgid) gettext(msgid)
163 #else /* !(HAVE_GETTEXT - 0) */
164 #define _(msgid) msgid
165 #endif /* !(HAVE_GETTEXT - 0) */
166 #endif /* !defined _ */
169 #define TZ_DOMAIN "tz"
170 #endif /* !defined TZ_DOMAIN */
173 ** UNIX was a registered trademark of UNIX System Laboratories in 1993.
176 #endif /* !defined PRIVATE_H */