]>
git.saurik.com Git - apple/system_cmds.git/blob - zic.tproj/private.h
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.7 2004/06/20 21:41:11 stefanf Exp $
20 ** This header is for use ONLY with the time conversion code.
21 ** There is no guarantee that it will remain unchanged,
22 ** or that it will remain at all.
23 ** Do NOT copy it to any system include directory.
33 static const char privatehid
[] = "@(#)private.h 7.53";
34 #endif /* !defined NOID */
35 #endif /* !defined lint */
38 ** Defaults for preprocessor symbols.
39 ** You can override these in your C compiler options, e.g. `-DHAVE_ADJTIME=0'.
43 #define HAVE_GETTEXT 0
44 #endif /* !defined HAVE_GETTEXT */
47 #define HAVE_STRERROR 1
48 #endif /* !defined HAVE_STRERROR */
51 #define HAVE_SYMLINK 1
52 #endif /* !defined HAVE_SYMLINK */
54 #ifndef HAVE_SYS_STAT_H
55 #define HAVE_SYS_STAT_H 1
56 #endif /* !defined HAVE_SYS_STAT_H */
58 #ifndef HAVE_SYS_WAIT_H
59 #define HAVE_SYS_WAIT_H 1
60 #endif /* !defined HAVE_SYS_WAIT_H */
63 #define HAVE_UNISTD_H 1
64 #endif /* !defined HAVE_UNISTD_H */
70 #include "sys/types.h" /* for time_t */
74 #include "limits.h" /* for CHAR_BIT */
80 #endif /* HAVE_GETTEXT - 0 */
82 #if HAVE_SYS_WAIT_H - 0
83 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
84 #endif /* HAVE_SYS_WAIT_H - 0 */
87 #include "unistd.h" /* for F_OK and R_OK */
88 #endif /* HAVE_UNISTD_H - 0 */
90 #if !(HAVE_UNISTD_H - 0)
93 #endif /* !defined F_OK */
96 #endif /* !defined R_OK */
97 #endif /* !(HAVE_UNISTD_H - 0) */
99 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
100 #define is_digit(c) ((unsigned)(c) - '0' <= 9)
105 ** Private function declarations.
107 char * icalloc
P((int nelem
, int elsize
));
108 char * icatalloc
P((char * old
, const char * new));
109 char * icpyalloc
P((const char * string
));
110 char * imalloc
P((int n
));
111 void * irealloc
P((void * pointer
, int size
));
112 void icfree
P((char * pointer
));
113 void ifree
P((char * pointer
));
114 char * scheck
P((const char *string
, const char *format
));
117 ** Finally, some convenience items.
122 #endif /* !defined TRUE */
126 #endif /* !defined FALSE */
129 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
130 #endif /* !defined TYPE_BIT */
133 #define TYPE_SIGNED(type) (((type) -1) < 0)
134 #endif /* !defined TYPE_SIGNED */
136 #ifndef INT_STRLEN_MAXIMUM
138 ** 302 / 1000 is log10(2.0) rounded up.
139 ** Subtract one for the sign bit if the type is signed;
140 ** add one for integer division truncation;
141 ** add one more for a minus sign if the type is signed.
143 #define INT_STRLEN_MAXIMUM(type) \
144 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type))
145 #endif /* !defined INT_STRLEN_MAXIMUM */
154 #endif /* defined lint */
158 #endif /* defined __GNUC__ */
159 #endif /* !defined lint */
160 #endif /* !defined GNUC_or_lint */
164 #define INITIALIZE(x) ((x) = 0)
165 #endif /* defined GNUC_or_lint */
167 #define INITIALIZE(x)
168 #endif /* !defined GNUC_or_lint */
169 #endif /* !defined INITIALIZE */
172 ** For the benefit of GNU folk...
173 ** `_(MSGID)' uses the current locale's message library string for MSGID.
174 ** The default is to use gettext if available, and use MSGID otherwise.
179 #define _(msgid) gettext(msgid)
180 #else /* !(HAVE_GETTEXT - 0) */
181 #define _(msgid) msgid
182 #endif /* !(HAVE_GETTEXT - 0) */
183 #endif /* !defined _ */
186 #define TZ_DOMAIN "tz"
187 #endif /* !defined TZ_DOMAIN */
190 ** UNIX was a registered trademark of The Open Group in 2003.
193 #endif /* !defined PRIVATE_H */