Account for grouping in printf width (bug 30068)
[glibc.git] / misc / efgcvt-template.c
blob27a00a3ab53871fce2de2a0c4548f6592ea740d1
1 /* Compatibility functions for floating point formatting.
2 Copyright (C) 1995-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <math.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <sys/param.h>
23 #include <libc-lock.h>
24 #include <math_ldbl_opt.h>
26 #ifndef SPRINTF
27 # define SPRINTF sprintf
28 #endif
30 #define APPEND(a, b) APPEND2 (a, b)
31 #define APPEND2(a, b) a##b
34 #define FCVT_BUFFER APPEND (FUNC_PREFIX, fcvt_buffer)
35 #define FCVT_BUFPTR APPEND (FUNC_PREFIX, fcvt_bufptr)
36 #define ECVT_BUFFER APPEND (FUNC_PREFIX, ecvt_buffer)
39 static char FCVT_BUFFER[MAXDIG];
40 static char ECVT_BUFFER[MAXDIG];
41 libc_freeres_ptr (static char *FCVT_BUFPTR);
43 char *
44 __FCVT (FLOAT_TYPE value, int ndigit, int *decpt, int *sign)
46 if (FCVT_BUFPTR == NULL)
48 if (__FCVT_R (value, ndigit, decpt, sign, FCVT_BUFFER, MAXDIG) != -1)
49 return FCVT_BUFFER;
51 FCVT_BUFPTR = (char *) malloc (FCVT_MAXDIG);
52 if (FCVT_BUFPTR == NULL)
53 return FCVT_BUFFER;
56 (void) __FCVT_R (value, ndigit, decpt, sign, FCVT_BUFPTR, FCVT_MAXDIG);
58 return FCVT_BUFPTR;
62 char *
63 __ECVT (FLOAT_TYPE value, int ndigit, int *decpt, int *sign)
65 (void) __ECVT_R (value, ndigit, decpt, sign, ECVT_BUFFER, MAXDIG);
67 return ECVT_BUFFER;
70 char *
71 __GCVT (FLOAT_TYPE value, int ndigit, char *buf)
73 SPRINTF (buf, "%.*" FLOAT_FMT_FLAG "g", MIN (ndigit, NDIGIT_MAX), value);
74 return buf;