1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2010 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* Advanced Software Technology Library
* AT&T Research
*
* a union of standard headers that works
* with local extensions enabled
* and local omission compensation
*/
#ifndef _AST_STD_H
#define _AST_STD_H 1
#define _AST_STD_I 1
#include <ast_common.h>
#if _BLD_ast
#define _BLD_cdt 1
#define _BLD_sfio 1
#if !_UWIN
#define _BLD_vmalloc 1
#endif
#endif
#ifdef _SFSTDIO_H
#define _SKIP_SFSTDIO_H
#else
#define _SFSTDIO_H
#ifndef FILE
#ifndef _SFIO_H
struct _sfio_s;
#endif
#define FILE struct _sfio_s
#ifndef __FILE_typedef
#define __FILE_typedef 1
#endif
#ifndef _FILEDEFED
#define _FILEDEFED 1
#endif
#endif
#endif
#include <ast_lib.h>
#include <ast_sys.h>
#include <ast_getopt.h> /* <stdlib.h> does this */
#include <ast_fcntl.h>
#include <ast_limits.h>
#include <ast_botch.h>
#ifdef _SKIP_SFSTDIO_H
#undef _SKIP_SFSTDIO_H
#else
#undef _SFSTDIO_H
#undef FILE
#endif
/* locale stuff */
#if !_hdr_locale
struct lconv
{
char* decimal_point;
char* thousands_sep;
char* grouping;
char* int_curr_symbol;
char* currency_symbol;
char* mon_decimal_point;
char* mon_thousands_sep;
char* mon_grouping;
char* positive_sign;
char* negative_sign;
char int_frac_digits;
char frac_digits;
char p_cs_precedes;
char p_sep_by_space;
char n_cs_precedes;
char n_sep_by_space;
char p_sign_posn;
char n_sign_posn;
};
#endif
#if _BLD_ast && defined(__EXPORT__)
#define extern __EXPORT__
#endif
#if !_UWIN /* for ast54 compatibility */
#undef getenv
#define getenv _ast_getenv
#undef setenviron
#define setenviron _ast_setenviron
extern char* getenv(const char*);
#endif
#undef localeconv
#define localeconv _ast_localeconv
#undef setlocale
#define setlocale _ast_setlocale
#undef strerror
#define strerror _ast_strerror
extern struct lconv* localeconv(void);
extern char* setenviron(const char*);
extern char* setlocale(int, const char*);
extern char* strerror(int);
#define AST_MESSAGE_SET 3 /* see <mc.h> mcindex() */
/*
* maintain this order when adding categories
*/
#define AST_LC_ALL 0
#define AST_LC_COLLATE 1
#define AST_LC_CTYPE 2
#define AST_LC_MESSAGES 3
#define AST_LC_MONETARY 4
#define AST_LC_NUMERIC 5
#define AST_LC_TIME 6
#define AST_LC_IDENTIFICATION 7
#define AST_LC_ADDRESS 8
#define AST_LC_NAME 9
#define AST_LC_TELEPHONE 10
#define AST_LC_XLITERATE 11
#define AST_LC_MEASUREMENT 12
#define AST_LC_PAPER 13
#define AST_LC_COUNT 14
#define AST_LC_LANG 255
#define AST_LC_internal 1
#define AST_LC_setenv (1L<<27)
#define AST_LC_find (1L<<28)
#define AST_LC_debug (1L<<29)
#define AST_LC_setlocale (1L<<30)
#define AST_LC_translate (1L<<31)
#ifndef LC_ALL
#define LC_ALL (-AST_LC_ALL)
#endif
#ifndef LC_COLLATE
#define LC_COLLATE (-AST_LC_COLLATE)
#endif
#ifndef LC_CTYPE
#define LC_CTYPE (-AST_LC_CTYPE)
#endif
#ifndef LC_MESSAGES
#define LC_MESSAGES (-AST_LC_MESSAGES)
#endif
#ifndef LC_MONETARY
#define LC_MONETARY (-AST_LC_MONETARY)
#endif
#ifndef LC_NUMERIC
#define LC_NUMERIC (-AST_LC_NUMERIC)
#endif
#ifndef LC_TIME
#define LC_TIME (-AST_LC_TIME)
#endif
#ifndef LC_ADDRESS
#define LC_ADDRESS (-AST_LC_ADDRESS)
#endif
#ifndef LC_IDENTIFICATION
#define LC_IDENTIFICATION (-AST_LC_IDENTIFICATION)
#endif
#ifndef LC_NAME
#define LC_NAME (-AST_LC_NAME)
#endif
#ifndef LC_TELEPHONE
#define LC_TELEPHONE (-AST_LC_TELEPHONE)
#endif
#ifndef LC_XLITERATE
#define LC_XLITERATE (-AST_LC_XLITERATE)
#endif
#ifndef LC_MEASUREMENT
#define LC_MEASUREMENT (-AST_LC_MEASUREMENT)
#endif
#ifndef LC_PAPER
#define LC_PAPER (-AST_LC_PAPER)
#endif
#ifndef LC_LANG
#define LC_LANG (-AST_LC_LANG)
#endif
#undef extern
#undef strcoll
#if _std_strcoll
#define strcoll _ast_info.collate
#else
#define strcoll strcmp
#endif
typedef struct
{
char* id;
struct
{
uint32_t serial;
uint32_t set;
} locale;
long tmp_long;
size_t tmp_size;
short tmp_short;
char tmp_char;
wchar_t tmp_wchar;
int (*collate)(const char*, const char*);
int tmp_int;
void* tmp_pointer;
int mb_cur_max;
int (*mb_len)(const char*, size_t);
int (*mb_towc)(wchar_t*, const char*, size_t);
size_t (*mb_xfrm)(char*, const char*, size_t);
int (*mb_width)(wchar_t);
int (*mb_conv)(char*, wchar_t);
uint32_t env_serial;
uint32_t mb_sync;
uint32_t version;
char pad[936];
} _Ast_info_t;
#if _BLD_ast && defined(__EXPORT__)
#define extern extern __EXPORT__
#endif
#if !_BLD_ast && defined(__IMPORT__)
#define extern extern __IMPORT__
#endif
extern _Ast_info_t _ast_info;
#undef extern
/* largefile hackery -- ast uses the large versions by default */
#if _typ_off64_t
#undef off_t
#define off_t off64_t
#endif
#if !defined(ftruncate) && _lib_ftruncate64
#define ftruncate ftruncate64
extern int ftruncate64(int, off64_t);
#endif
#if !defined(lseek) && _lib_lseek64
#define lseek lseek64
extern off64_t lseek64(int, off64_t, int);
#endif
#if !defined(truncate) && _lib_truncate64
#define truncate truncate64
extern int truncate64(const char*, off64_t);
#endif
/* direct macro access for bsd crossover */
#if !defined(__cplusplus)
#if !defined(memcpy) && !defined(_lib_memcpy) && defined(_lib_bcopy)
#define memcpy(t,f,n) (bcopy(f,t,n),(t))
#endif
#if !defined(memzero) && !defined(_lib_memzero)
#if defined(_lib_memset) || !defined(_lib_bzero)
#define memzero(b,n) memset(b,0,n)
#else
#define memzero(b,n) (bzero(b,n),(b))
#endif
#endif
#endif
#if !defined(remove)
extern int remove(const char*);
#endif
#if !defined(rename)
extern int rename(const char*, const char*);
#endif
#if !defined(strchr) && !defined(_lib_strchr) && defined(_lib_index)
#define strchr(s,c) index(s,c)
#endif
#if !defined(strrchr) && !defined(_lib_strrchr) && defined(_lib_rindex)
#define strrchr(s,c) rindex(s,c)
#endif
/* and now introducing prototypes botched by the standard(s) */
#if _BLD_ast && defined(__EXPORT__)
#define extern __EXPORT__
#endif
#undef getpgrp
#define getpgrp() _ast_getpgrp()
extern int _ast_getpgrp(void);
#undef extern
/*
* and finally, standard interfaces hijacked by ast
* _AST_STD_I delays headers that require <ast_map.h>
*/
#include <ast_map.h>
#undef _AST_STD_I
#if _AST_GETOPT_H < 0
#undef _AST_GETOPT_H
#include <ast_getopt.h>
#endif
#if _GETOPT_H < 0
#undef _GETOPT_H
#include <getopt.h>
#endif
#if _REGEX_H < 0
#undef _REGEX_H
#include <regex.h>
#endif
#endif
|