1 /* GCC Quad-Precision Math Library
2 Copyright (C) 2011 Free Software Foundation, Inc.
3 Written by Jakub Jelinek <jakub@redhat.com>
5 This file is part of the libquadmath library.
6 Libquadmath is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 Libquadmath is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with libquadmath; see the file COPYING.LIB. If
18 not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
26 #ifdef HAVE_LANGINFO_H
38 #ifdef HAVE_PRINTF_HOOKS
44 #include "quadmath-imp.h"
57 #define putwc(c,f) putc(c,f)
62 /* Won't work for EBCDIC. */
68 ({__typeof(x) __is_x = (x); __is_x >= 'A' && __is_x <= 'Z'; })
70 ({__typeof(x) __is_x = (x); __is_x >= '0' && __is_x <= '9'; })
72 ({__typeof(x) __is_x = (x); \
73 (__is_x >= '0' && __is_x <= '9') \
74 || ((x) >= 'A' && (x) <= 'F') \
75 || ((x) >= 'a' && (x) <= 'f'); })
77 ({__typeof(x) __is_x = (x); \
78 (__is_x >= 'A' && __is_x <= 'Z') ? __is_x - 'A' + 'a' : __is_x; })
82 #ifdef __CHAR_UNSIGNED__
83 #define CHAR_MAX (2 * __SCHAR_MAX__ + 1)
85 #define CHAR_MAX __SCHAR_MAX__
89 #ifndef HAVE_PRINTF_HOOKS
90 #define printf_info __quadmath_printf_info
93 int prec
; /* Precision. */
94 int width
; /* Width. */
95 wchar_t spec
; /* Format letter. */
96 unsigned int is_long_double
:1;/* L flag. */
97 unsigned int is_short
:1; /* h flag. */
98 unsigned int is_long
:1; /* l flag. */
99 unsigned int alt
:1; /* # flag. */
100 unsigned int space
:1; /* Space flag. */
101 unsigned int left
:1; /* - flag. */
102 unsigned int showsign
:1; /* + flag. */
103 unsigned int group
:1; /* ' flag. */
104 unsigned int extra
:1; /* For special use. */
105 unsigned int is_char
:1; /* hh flag. */
106 unsigned int wide
:1; /* Nonzero for wide character streams. */
107 unsigned int i18n
:1; /* I flag. */
108 unsigned short int user
; /* Bits for user-installed modifiers. */
109 wchar_t pad
; /* Padding character. */
113 struct __quadmath_printf_file
123 __quadmath_printf_fp (struct __quadmath_printf_file
*fp
,
124 const struct printf_info
*info
,
125 const void *const *args
) attribute_hidden
;
127 __quadmath_printf_fphex (struct __quadmath_printf_file
*fp
,
128 const struct printf_info
*info
,
129 const void *const *args
) attribute_hidden
;
131 size_t __quadmath_do_pad (struct __quadmath_printf_file
*fp
, int wide
,
132 int c
, size_t n
) attribute_hidden
;
134 static inline __attribute__((__unused__
)) size_t
135 __quadmath_do_put (struct __quadmath_printf_file
*fp
, int wide
,
136 const char *s
, size_t n
)
144 const wchar_t *ls
= (const wchar_t *) s
;
145 for (cnt
= 0; cnt
< n
; cnt
++)
146 if (putwc (ls
[cnt
], fp
->fp
) == WEOF
)
150 return fwrite (s
, 1, n
, fp
->fp
);
152 len
= MIN (fp
->size
, n
);
153 memcpy (fp
->str
, s
, len
);
160 static inline __attribute__((__unused__
)) int
161 __quadmath_do_putc (struct __quadmath_printf_file
*fp
, int wide
,
165 return wide
? (int) putwc (c
, fp
->fp
) : putc (c
, fp
->fp
);
172 return (unsigned char) c
;
175 #define PUT(f, s, n) __quadmath_do_put (f, wide, s, n)
176 #define PAD(f, c, n) __quadmath_do_pad (f, wide, c, n)
177 #define PUTC(c, f) __quadmath_do_putc (f, wide, c)
179 #define nl_langinfo_wc(x) \
180 ({ union { const char *mb; wchar_t wc; } u; u.mb = nl_langinfo (x); u.wc; })
183 #define _itoa __quadmath_itoa
186 #define NAN __builtin_nanf ("")