1 /* Decomposed printf argument list.
2 Copyright (C) 1999, 2002-2003, 2005-2006 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published
6 by the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
24 #include "printf-args.h"
30 printf_fetchargs (va_list args
, arguments
*a
)
35 for (i
= 0, ap
= &a
->arg
[0]; i
< a
->count
; i
++, ap
++)
39 ap
->a
.a_schar
= va_arg (args
, /*signed char*/ int);
42 ap
->a
.a_uchar
= va_arg (args
, /*unsigned char*/ int);
45 ap
->a
.a_short
= va_arg (args
, /*short*/ int);
48 ap
->a
.a_ushort
= va_arg (args
, /*unsigned short*/ int);
51 ap
->a
.a_int
= va_arg (args
, int);
54 ap
->a
.a_uint
= va_arg (args
, unsigned int);
57 ap
->a
.a_longint
= va_arg (args
, long int);
60 ap
->a
.a_ulongint
= va_arg (args
, unsigned long int);
63 case TYPE_LONGLONGINT
:
64 ap
->a
.a_longlongint
= va_arg (args
, long long int);
66 case TYPE_ULONGLONGINT
:
67 ap
->a
.a_ulonglongint
= va_arg (args
, unsigned long long int);
71 ap
->a
.a_double
= va_arg (args
, double);
73 #ifdef HAVE_LONG_DOUBLE
75 ap
->a
.a_longdouble
= va_arg (args
, long double);
79 ap
->a
.a_char
= va_arg (args
, int);
83 /* Although ISO C 99 7.24.1.(2) says that wint_t is "unchanged by
84 default argument promotions", this is not the case in mingw32,
85 where wint_t is 'unsigned short'. */
87 (sizeof (wint_t) < sizeof (int)
89 : va_arg (args
, wint_t));
93 ap
->a
.a_string
= va_arg (args
, const char *);
94 /* A null pointer is an invalid argument for "%s", but in practice
95 it occurs quite frequently in printf statements that produce
96 debug output. Use a fallback in this case. */
97 if (ap
->a
.a_string
== NULL
)
98 ap
->a
.a_string
= "(NULL)";
101 case TYPE_WIDE_STRING
:
102 ap
->a
.a_wide_string
= va_arg (args
, const wchar_t *);
103 /* A null pointer is an invalid argument for "%ls", but in practice
104 it occurs quite frequently in printf statements that produce
105 debug output. Use a fallback in this case. */
106 if (ap
->a
.a_wide_string
== NULL
)
108 static const wchar_t wide_null_string
[] =
111 (wchar_t)'N', (wchar_t)'U', (wchar_t)'L', (wchar_t)'L',
115 ap
->a
.a_wide_string
= wide_null_string
;
120 ap
->a
.a_pointer
= va_arg (args
, void *);
122 case TYPE_COUNT_SCHAR_POINTER
:
123 ap
->a
.a_count_schar_pointer
= va_arg (args
, signed char *);
125 case TYPE_COUNT_SHORT_POINTER
:
126 ap
->a
.a_count_short_pointer
= va_arg (args
, short *);
128 case TYPE_COUNT_INT_POINTER
:
129 ap
->a
.a_count_int_pointer
= va_arg (args
, int *);
131 case TYPE_COUNT_LONGINT_POINTER
:
132 ap
->a
.a_count_longint_pointer
= va_arg (args
, long int *);
134 #ifdef HAVE_LONG_LONG
135 case TYPE_COUNT_LONGLONGINT_POINTER
:
136 ap
->a
.a_count_longlongint_pointer
= va_arg (args
, long long int *);