Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/internals/_PDCLIB_int.h
2 views
1
/* PDCLib internal integer logic <_PDCLIB_int.h>
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
#ifndef __PDCLIB_INT_H
8
#define __PDCLIB_INT_H __PDCLIB_INT_H
9
10
/* -------------------------------------------------------------------------- */
11
/* You should not have to edit anything in this file; if you DO have to, it */
12
/* would be considered a bug / missing feature: notify the author(s). */
13
/* -------------------------------------------------------------------------- */
14
15
#include "_PDCLIB_config.h"
16
#include "_PDCLIB_aux.h"
17
18
/* null pointer constant */
19
#define _PDCLIB_NULL 0
20
21
/* -------------------------------------------------------------------------- */
22
/* Limits of native datatypes */
23
/* -------------------------------------------------------------------------- */
24
/* The definition of minimum limits for unsigned datatypes is done because */
25
/* later on we will "construct" limits for other abstract types: */
26
/* USHRT -> _PDCLIB_ + USHRT + _MIN -> _PDCLIB_USHRT_MIN -> 0 */
27
/* INT -> _PDCLIB_ + INT + _MIN -> _PDCLIB_INT_MIN -> ... you get the idea. */
28
/* -------------------------------------------------------------------------- */
29
30
/* Setting 'char' limits */
31
#define _PDCLIB_CHAR_BIT 8
32
#define _PDCLIB_UCHAR_MIN 0
33
#define _PDCLIB_UCHAR_MAX 0xff
34
#define _PDCLIB_SCHAR_MIN (-0x7f - 1)
35
#define _PDCLIB_SCHAR_MAX 0x7f
36
#ifdef _PDCLIB_CHAR_SIGNED
37
#define _PDCLIB_CHAR_MIN _PDCLIB_SCHAR_MIN
38
#define _PDCLIB_CHAR_MAX _PDCLIB_SCHAR_MAX
39
#else
40
#define _PDCLIB_CHAR_MIN 0
41
#define _PDCLIB_CHAR_MAX _PDCLIB_UCHAR_MAX
42
#endif
43
44
/* Setting 'short' limits */
45
#if _PDCLIB_SHRT_BYTES == 2
46
#define _PDCLIB_SHRT_MAX 0x7fff
47
#define _PDCLIB_SHRT_MIN (-0x7fff - 1)
48
#define _PDCLIB_USHRT_MAX 0xffff
49
#else
50
#error Unsupported width of 'short' (not 16 bit).
51
#endif
52
#define _PDCLIB_USHRT_MIN 0
53
54
#if _PDCLIB_INT_BYTES < _PDCLIB_SHRT_BYTES
55
#error Bogus setting: short > int? Check _PDCLIB_config.h.
56
#endif
57
58
/* Setting 'int' limits */
59
#if _PDCLIB_INT_BYTES == 2
60
#define _PDCLIB_INT_MAX 0x7fff
61
#define _PDCLIB_INT_MIN (-0x7fff - 1)
62
#define _PDCLIB_UINT_MAX 0xffffU
63
#elif _PDCLIB_INT_BYTES == 4
64
#define _PDCLIB_INT_MAX 0x7fffffff
65
#define _PDCLIB_INT_MIN (-0x7fffffff - 1)
66
#define _PDCLIB_UINT_MAX 0xffffffffU
67
#elif _PDCLIB_INT_BYTES == 8
68
#define _PDCLIB_INT_MAX 0x7fffffffffffffff
69
#define _PDCLIB_INT_MIN (-0x7fffffffffffffff - 1)
70
#define _PDCLIB_UINT_MAX 0xffffffffffffffff
71
#else
72
#error Unsupported width of 'int' (neither 16, 32, nor 64 bit).
73
#endif
74
#define _PDCLIB_UINT_MIN 0
75
76
/* Setting 'long' limits */
77
#if _PDCLIB_LONG_BYTES == 4
78
#define _PDCLIB_LONG_MAX 0x7fffffffL
79
#define _PDCLIB_LONG_MIN (-0x7fffffffL - 1L)
80
#define _PDCLIB_ULONG_MAX 0xffffffffUL
81
#elif _PDCLIB_LONG_BYTES == 8
82
#define _PDCLIB_LONG_MAX 0x7fffffffffffffffL
83
#define _PDCLIB_LONG_MIN (-0x7fffffffffffffffL - 1L)
84
#define _PDCLIB_ULONG_MAX 0xffffffffffffffffUL
85
#else
86
#error Unsupported width of 'long' (neither 32 nor 64 bit).
87
#endif
88
#define _PDCLIB_ULONG_MIN 0
89
90
/* Setting 'long long' limits */
91
#if _PDCLIB_LLONG_BYTES == 8
92
#define _PDCLIB_LLONG_MAX 0x7fffffffffffffffLL
93
#define _PDCLIB_LLONG_MIN (-0x7fffffffffffffffLL - 1LL)
94
#define _PDCLIB_ULLONG_MAX 0xffffffffffffffffULL
95
#elif _PDCLIB_LLONG_BYTES == 16
96
#define _PDCLIB_LLONG_MAX 0x7fffffffffffffffffffffffffffffffLL
97
#define _PDCLIB_LLONG_MIN (-0x7fffffffffffffffffffffffffffffffLL - 1LL)
98
#define _PDCLIB_ULLONG_MAX 0xffffffffffffffffffffffffffffffffULL
99
#else
100
#error Unsupported width of 'long long' (neither 64 nor 128 bit).
101
#endif
102
#define _PDCLIB_ULLONG_MIN 0
103
104
/* -------------------------------------------------------------------------- */
105
/* <stdint.h> exact-width types and their limits */
106
/* -------------------------------------------------------------------------- */
107
/* Note that, for the "standard" widths of 8, 16, 32 and 64 bit, the "LEAST" */
108
/* types are identical to the "exact-width" types, by definition. */
109
110
/* Setting 'int8_t', its limits, its literal, and conversion macros. */
111
#if _PDCLIB_CHAR_BIT == 8
112
typedef signed char _PDCLIB_int8_t;
113
typedef unsigned char _PDCLIB_uint8_t;
114
typedef signed char _PDCLIB_int_least8_t;
115
typedef unsigned char _PDCLIB_uint_least8_t;
116
#define _PDCLIB_INT8_MAX _PDCLIB_CHAR_MAX
117
#define _PDCLIB_INT8_MIN _PDCLIB_CHAR_MIN
118
#define _PDCLIB_UINT8_MAX _PDCLIB_UCHAR_MAX
119
#define _PDCLIB_8_CONV hh
120
#else
121
#error Unsupported width of char (not 8 bits).
122
#endif
123
124
/* Setting 'int16_t', its limits, its literal, and conversion macros. */
125
#if _PDCLIB_INT_BYTES == 2
126
typedef signed int _PDCLIB_int16_t;
127
typedef unsigned int _PDCLIB_uint16_t;
128
typedef signed int _PDCLIB_int_least16_t;
129
typedef unsigned int _PDCLIB_uint_least16_t;
130
#define _PDCLIB_INT16_MAX _PDCLIB_INT_MAX
131
#define _PDCLIB_INT16_MIN _PDCLIB_INT_MIN
132
#define _PDCLIB_UINT16_MAX _PDCLIB_UINT_MAX
133
#define _PDCLIB_16_CONV
134
#elif _PDCLIB_SHRT_BYTES == 2
135
typedef signed short _PDCLIB_int16_t;
136
typedef unsigned short _PDCLIB_uint16_t;
137
typedef signed short _PDCLIB_int_least16_t;
138
typedef unsigned short _PDCLIB_uint_least16_t;
139
#define _PDCLIB_INT16_MAX _PDCLIB_SHRT_MAX
140
#define _PDCLIB_INT16_MIN _PDCLIB_SHRT_MIN
141
#define _PDCLIB_UINT16_MAX _PDCLIB_USHRT_MAX
142
#define _PDCLIB_16_CONV h
143
#else
144
#error Neither 'short' nor 'int' are 16-bit.
145
#endif
146
147
/* Setting 'int32_t', its limits, its literal, and conversion macros. */
148
#if _PDCLIB_INT_BYTES == 4
149
typedef signed int _PDCLIB_int32_t;
150
typedef unsigned int _PDCLIB_uint32_t;
151
typedef signed int _PDCLIB_int_least32_t;
152
typedef unsigned int _PDCLIB_uint_least32_t;
153
#define _PDCLIB_INT32_MAX _PDCLIB_INT_MAX
154
#define _PDCLIB_INT32_MIN _PDCLIB_INT_MIN
155
#define _PDCLIB_UINT32_MAX _PDCLIB_UINT_MAX
156
#define _PDCLIB_INT32_LITERAL
157
#define _PDCLIB_UINT32_LITERAL
158
#define _PDCLIB_32_CONV
159
#elif _PDCLIB_LONG_BYTES == 4
160
typedef signed long _PDCLIB_int32_t;
161
typedef unsigned long _PDCLIB_uint32_t;
162
typedef signed long _PDCLIB_int_least32_t;
163
typedef unsigned long _PDCLIB_uint_least32_t;
164
#define _PDCLIB_INT32_MAX _PDCLIB_LONG_MAX
165
#define _PDCLIB_INT32_MIN _PDCLIB_LONG_MIN
166
#define _PDCLIB_UINT32_MAX _PDCLIB_LONG_MAX
167
#define _PDCLIB_INT32_LITERAL l
168
#define _PDCLIB_UINT32_LITERAL ul
169
#define _PDCLIB_32_CONV l
170
#else
171
#error Neither 'int' nor 'long' are 32-bit.
172
#endif
173
174
/* Setting 'int64_t', its limits, its literal, and conversion macros. */
175
#if _PDCLIB_LONG_BYTES == 8 && !defined(_PDCLIB_INT64_IS_LLONG)
176
typedef signed long _PDCLIB_int64_t;
177
typedef unsigned long _PDCLIB_uint64_t;
178
typedef signed long _PDCLIB_int_least64_t;
179
typedef unsigned long _PDCLIB_uint_least64_t;
180
#define _PDCLIB_INT64_MAX _PDCLIB_LONG_MAX
181
#define _PDCLIB_INT64_MIN _PDCLIB_LONG_MIN
182
#define _PDCLIB_UINT64_MAX _PDCLIB_ULONG_MAX
183
#define _PDCLIB_INT64_LITERAL l
184
#define _PDCLIB_UINT64_LITERAL ul
185
#define _PDCLIB_64_CONV l
186
#elif _PDCLIB_LLONG_BYTES == 8
187
typedef signed long long _PDCLIB_int64_t;
188
typedef unsigned long long _PDCLIB_uint64_t;
189
typedef signed long long _PDCLIB_int_least64_t;
190
typedef unsigned long long _PDCLIB_uint_least64_t;
191
#define _PDCLIB_INT64_MAX _PDCLIB_LLONG_MAX
192
#define _PDCLIB_INT64_MIN _PDCLIB_LLONG_MIN
193
#define _PDCLIB_UINT64_MAX _PDCLIB_ULLONG_MAX
194
#define _PDCLIB_INT64_LITERAL ll
195
#define _PDCLIB_UINT64_LITERAL ull
196
#define _PDCLIB_64_CONV ll
197
#else
198
#error Neither 'long' nor 'long long' are 64-bit.
199
#endif
200
201
/* -------------------------------------------------------------------------- */
202
/* <stdint.h> "fastest" types and their limits */
203
/* -------------------------------------------------------------------------- */
204
/* This is, admittedly, butt-ugly. But at least it's ugly where the average */
205
/* user of PDCLib will never see it, and makes <_PDCLIB_config.h> much */
206
/* cleaner. */
207
/* -------------------------------------------------------------------------- */
208
209
typedef _PDCLIB_fast8 _PDCLIB_int_fast8_t;
210
typedef unsigned _PDCLIB_fast8 _PDCLIB_uint_fast8_t;
211
#define _PDCLIB_INT_FAST8_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST8 ), _MIN )
212
#define _PDCLIB_INT_FAST8_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST8 ), _MAX )
213
#define _PDCLIB_UINT_FAST8_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_FAST8 ), _MAX )
214
215
typedef _PDCLIB_fast16 _PDCLIB_int_fast16_t;
216
typedef unsigned _PDCLIB_fast16 _PDCLIB_uint_fast16_t;
217
#define _PDCLIB_INT_FAST16_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST16 ), _MIN )
218
#define _PDCLIB_INT_FAST16_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST16 ), _MAX )
219
#define _PDCLIB_UINT_FAST16_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_FAST16 ), _MAX )
220
221
typedef _PDCLIB_fast32 _PDCLIB_int_fast32_t;
222
typedef unsigned _PDCLIB_fast32 _PDCLIB_uint_fast32_t;
223
#define _PDCLIB_INT_FAST32_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST32 ), _MIN )
224
#define _PDCLIB_INT_FAST32_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST32 ), _MAX )
225
#define _PDCLIB_UINT_FAST32_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_FAST32 ), _MAX )
226
227
typedef _PDCLIB_fast64 _PDCLIB_int_fast64_t;
228
typedef unsigned _PDCLIB_fast64 _PDCLIB_uint_fast64_t;
229
#define _PDCLIB_INT_FAST64_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST64 ), _MIN )
230
#define _PDCLIB_INT_FAST64_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_FAST64 ), _MAX )
231
#define _PDCLIB_UINT_FAST64_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_FAST64 ), _MAX )
232
233
/* -------------------------------------------------------------------------- */
234
/* Various <stddef.h> typedefs and limits */
235
/* -------------------------------------------------------------------------- */
236
237
typedef _PDCLIB_ptrdiff _PDCLIB_ptrdiff_t;
238
#define _PDCLIB_PTRDIFF_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_PTRDIFF ), _MIN )
239
#define _PDCLIB_PTRDIFF_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_PTRDIFF ), _MAX )
240
241
typedef _PDCLIB_size _PDCLIB_size_t;
242
#define _PDCLIB_SIZE_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_SIZE ), _MAX )
243
244
typedef _PDCLIB_wint _PDCLIB_wint_t;
245
246
#ifndef __cplusplus
247
typedef _PDCLIB_wchar _PDCLIB_wchar_t;
248
#else
249
typedef wchar_t _PDCLIB_wchar_t;
250
#endif
251
#define _PDCLIB_WCHAR_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_WCHAR ), _MIN )
252
#define _PDCLIB_WCHAR_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_WCHAR ), _MAX )
253
254
#define _PDCLIB_SIG_ATOMIC_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_SIG_ATOMIC ), _MIN )
255
#define _PDCLIB_SIG_ATOMIC_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_SIG_ATOMIC ), _MAX )
256
257
typedef _PDCLIB_intptr _PDCLIB_intptr_t;
258
typedef unsigned _PDCLIB_intptr _PDCLIB_uintptr_t;
259
#define _PDCLIB_INTPTR_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_INTPTR ), _MIN )
260
#define _PDCLIB_INTPTR_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_INTPTR ), _MAX )
261
#define _PDCLIB_UINTPTR_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_INTPTR ), _MAX )
262
263
typedef _PDCLIB_intmax _PDCLIB_intmax_t;
264
typedef unsigned _PDCLIB_intmax _PDCLIB_uintmax_t;
265
#define _PDCLIB_INTMAX_MIN _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_INTMAX ), _MIN )
266
#define _PDCLIB_INTMAX_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_, _PDCLIB_INTMAX ), _MAX )
267
#define _PDCLIB_UINTMAX_MAX _PDCLIB_concat( _PDCLIB_concat( _PDCLIB_U, _PDCLIB_INTMAX ), _MAX )
268
#define _PDCLIB_INTMAX_C( value ) _PDCLIB_concat( value, _PDCLIB_INTMAX_LITERAL )
269
#define _PDCLIB_UINTMAX_C( value ) _PDCLIB_concat( value, _PDCLIB_concat( u, _PDCLIB_INTMAX_LITERAL ) )
270
271
/* -------------------------------------------------------------------------- */
272
/* Various <time.h> internals */
273
/* -------------------------------------------------------------------------- */
274
275
typedef _PDCLIB_time _PDCLIB_time_t;
276
typedef _PDCLIB_clock _PDCLIB_clock_t;
277
278
/* -------------------------------------------------------------------------- */
279
/* Internal data types */
280
/* -------------------------------------------------------------------------- */
281
282
/* Structure required by both atexit() and exit() for handling atexit functions */
283
struct _PDCLIB_exitfunc_t
284
{
285
struct _PDCLIB_exitfunc_t * next;
286
void (*func)( void );
287
};
288
289
/* -------------------------------------------------------------------------- */
290
/* Declaration of helper functions (implemented in functions/_PDCLIB). */
291
/* -------------------------------------------------------------------------- */
292
293
/* This is the main function called by atoi(), atol() and atoll(). */
294
_PDCLIB_intmax_t _PDCLIB_atomax( const char * s );
295
296
/* Two helper functions used by strtol(), strtoul() and long long variants. */
297
const char * _PDCLIB_strtox_prelim( const char * p, char * sign, int * base );
298
_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, int limdigit, char * sign );
299
300
/* Digits arrays used by various integer conversion functions */
301
extern char _PDCLIB_digits[];
302
extern char _PDCLIB_Xdigits[];
303
304
/* -------------------------------------------------------------------------- */
305
/* Sanity checks */
306
/* -------------------------------------------------------------------------- */
307
308
#if _PDCLIB_C_VERSION >= 2011
309
#ifdef __cplusplus
310
#define _Static_assert static_assert
311
#endif
312
_Static_assert( sizeof( short ) == _PDCLIB_SHRT_BYTES, "_PDCLIB_SHRT_BYTES incorrectly defined, check _PDCLIB_config.h" );
313
_Static_assert( sizeof( int ) == _PDCLIB_INT_BYTES, "_PDCLIB_INT_BYTES incorrectly defined, check _PDCLIB_config.h" );
314
_Static_assert( sizeof( long ) == _PDCLIB_LONG_BYTES, "_PDCLIB_LONG_BYTES incorrectly defined, check _PDCLIB_config.h" );
315
_Static_assert( sizeof( long long ) == _PDCLIB_LLONG_BYTES, "_PDCLIB_LLONG_BYTES incorrectly defined, check _PDCLIB_config.h" );
316
_Static_assert( ( (char)-1 < 0 ) == _PDCLIB_CHAR_SIGNED, "_PDCLIB_CHAR_SIGNED incorrectly defined, check _PDCLIB_config.h" );
317
_Static_assert( sizeof( _PDCLIB_wchar ) == sizeof( L'x' ), "_PDCLIB_wchar incorrectly defined, check _PDCLIB_config.h" );
318
_Static_assert( sizeof( void * ) == sizeof( _PDCLIB_intptr ), "_PDCLIB_intptr incorrectly defined, check _PDCLIB_config.h" );
319
_Static_assert( sizeof( sizeof( 1 ) ) == sizeof( _PDCLIB_size ), "_PDCLIB_size incorrectly defined, check _PDCLIB_config.h" );
320
_Static_assert( sizeof( &_PDCLIB_digits[1] - &_PDCLIB_digits[0] ) == sizeof( _PDCLIB_ptrdiff ), "_PDCLIB_ptrdiff incorrectly defined, check _PDCLIB_config.h" );
321
#endif
322
323
/* -------------------------------------------------------------------------- */
324
/* locale / wchar / uchar */
325
/* -------------------------------------------------------------------------- */
326
327
#ifndef __cplusplus
328
typedef _PDCLIB_uint16_t _PDCLIB_char16_t;
329
typedef _PDCLIB_uint32_t _PDCLIB_char32_t;
330
#else
331
typedef char16_t _PDCLIB_char16_t;
332
typedef char32_t _PDCLIB_char32_t;
333
#endif
334
335
typedef struct _PDCLIB_mbstate {
336
union {
337
/* Is this the best way to represent this? Is this big enough? */
338
_PDCLIB_uint64_t _St64[15];
339
_PDCLIB_uint32_t _St32[31];
340
_PDCLIB_uint16_t _St16[62];
341
unsigned char _StUC[124];
342
signed char _StSC[124];
343
char _StC [124];
344
};
345
346
/* c16/related functions: Surrogate storage
347
*
348
* If zero, no surrogate pending. If nonzero, surrogate.
349
*/
350
_PDCLIB_uint16_t _Surrogate;
351
352
/* In cases where the underlying codec is capable of regurgitating a
353
* character without consuming any extra input (e.g. a surrogate pair in a
354
* UCS-4 to UTF-16 conversion) then these fields are used to track that
355
* state. In particular, they are used to buffer/fake the input for mbrtowc
356
* and similar functions.
357
*
358
* See _PDCLIB_encoding.h for values of _PendState and the resultant value
359
* in _PendChar.
360
*/
361
unsigned char _PendState;
362
char _PendChar;
363
} _PDCLIB_mbstate_t;
364
365
typedef struct _PDCLIB_locale *_PDCLIB_locale_t;
366
typedef struct lconv _PDCLIB_lconv_t;
367
368
_PDCLIB_size_t _PDCLIB_mb_cur_max( void );
369
370
/* wide-character EOF */
371
#define _PDCLIB_WEOF ((wint_t) -1)
372
373
/* -------------------------------------------------------------------------- */
374
/* stdio */
375
/* -------------------------------------------------------------------------- */
376
377
/* Position / status structure for getpos() / fsetpos(). */
378
typedef struct _PDCLIB_fpos
379
{
380
_PDCLIB_int_fast64_t offset; /* File position offset */
381
_PDCLIB_mbstate_t mbs; /* Multibyte parsing state */
382
} _PDCLIB_fpos_t;
383
384
typedef struct _PDCLIB_fileops _PDCLIB_fileops_t;
385
typedef union _PDCLIB_fd _PDCLIB_fd_t;
386
typedef struct _PDCLIB_file _PDCLIB_file_t; // Rename to _PDCLIB_FILE?
387
388
/* Status structure required by _PDCLIB_print(). */
389
struct _PDCLIB_status_t
390
{
391
/* XXX This structure is horrible now. scanf needs its own */
392
393
int base; /* base to which the value shall be converted */
394
_PDCLIB_int_fast32_t flags; /* flags and length modifiers */
395
unsigned n; /* print: maximum characters to be written (snprintf) */
396
/* scan: number matched conversion specifiers */
397
unsigned i; /* number of characters read/written */
398
unsigned current;/* chars read/written in the CURRENT conversion */
399
unsigned width; /* specified field width */
400
int prec; /* specified field precision */
401
402
union {
403
void * ctx; /* context for callback */
404
const char * s; /* input string for scanf */
405
};
406
407
union {
408
_PDCLIB_size_t ( *write ) ( void *p, const char *buf, _PDCLIB_size_t size );
409
_PDCLIB_file_t *stream; /* for scanf */
410
};
411
_PDCLIB_va_list arg; /* argument stack */
412
};
413
414
#endif
415
416