Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2003-12-18  Ulrich Drepper  <drepper@redhat.com>

	* stdio-common/printf_fp.c: Add support to use alternative decimal
	digits.
	* stdio-common/vfprintf.c (vfprintf): Pass use_outdigits flags to
	__printf_fp.  Patch by Hamed Malek <hamed@bamdad.org>.
  • Loading branch information
Ulrich Drepper committed Dec 19, 2003
1 parent 2e5e031 commit 8a7455e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 19 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
2003-12-18 Ulrich Drepper <drepper@redhat.com>

* stdio-common/printf_fp.c: Add support to use alternative decimal
digits.
* stdio-common/vfprintf.c (vfprintf): Pass use_outdigits flags to
__printf_fp. Patch by Hamed Malek <hamed@bamdad.org>.

2003-12-18 Carlos O'Donell <carlos@baldric.uwo.ca>

* sysdeps/unix/sysv/linux/hppa/clone.S (__clone) [PIC]: Save PIC,
Expand Down
45 changes: 26 additions & 19 deletions stdio-common/printf_fp.c
@@ -1,5 +1,5 @@
/* Floating point output for `printf'.
Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1995-1999,2000,2001,2002,2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
Expand All @@ -21,11 +21,7 @@
/* The gmp headers need some configuration frobs. */
#define HAVE_ALLOCA 1

#ifdef USE_IN_LIBIO
# include <libioP.h>
#else
# include <stdio.h>
#endif
#include <libioP.h>
#include <alloca.h>
#include <ctype.h>
#include <float.h>
Expand All @@ -43,28 +39,30 @@
#include <stdlib.h>
#include <wchar.h>

#ifdef COMPILE_WPRINTF
# define CHAR_T wchar_t
#else
# define CHAR_T char
#endif

#include "_i18n_number.h"

#ifndef NDEBUG
# define NDEBUG /* Undefine this for debugging assertions. */
#endif
#include <assert.h>

/* This defines make it possible to use the same code for GNU C library and
the GNU I/O library. */
#ifdef USE_IN_LIBIO
# define PUT(f, s, n) _IO_sputn (f, s, n)
# define PAD(f, c, n) (wide ? _IO_wpadn (f, c, n) : INTUSE(_IO_padn) (f, c, n))
#define PUT(f, s, n) _IO_sputn (f, s, n)
#define PAD(f, c, n) (wide ? _IO_wpadn (f, c, n) : INTUSE(_IO_padn) (f, c, n))
/* We use this file GNU C library and GNU I/O library. So make
names equal. */
# undef putc
# define putc(c, f) (wide \
? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f))
# define size_t _IO_size_t
# define FILE _IO_FILE
#else /* ! USE_IN_LIBIO */
# define PUT(f, s, n) fwrite (s, 1, n, f)
# define PAD(f, c, n) __printf_pad (f, c, n)
ssize_t __printf_pad __P ((FILE *, char pad, int n)); /* In vfprintf.c. */
#endif /* USE_IN_LIBIO */
#undef putc
#define putc(c, f) (wide \
? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f))
#define size_t _IO_size_t
#define FILE _IO_FILE

/* Macros for doing the actual output. */

Expand Down Expand Up @@ -1129,6 +1127,15 @@ __printf_fp (FILE *fp,
}

tmpptr = buffer;
if (__builtin_expect (info->i18n, 0))
{
#ifdef COMPILE_WPRINTF
wstartp = _i18n_number_rewrite (wstartp, wcp);
#else
tmpptr = _i18n_number_rewrite (tmpptr, cp);
#endif
}

PRINT (tmpptr, wstartp, wide ? wcp - wstartp : cp - tmpptr);

/* Free the memory if necessary. */
Expand Down
1 change: 1 addition & 0 deletions stdio-common/vfprintf.c
Expand Up @@ -817,6 +817,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
.group = group, \
.pad = pad, \
.extra = 0, \
.i18n = use_outdigits, \
.wide = sizeof (CHAR_T) != 1 }; \
\
if (is_long_double) \
Expand Down

0 comments on commit 8a7455e

Please sign in to comment.