2015-01-02 17:28:19 +01:00
|
|
|
/* Copyright (C) 2005-2015 Free Software Foundation, Inc.
|
2005-07-20 01:46:55 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@gnu.org>.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2005-07-20 01:46:55 +02:00
|
|
|
|
2005-07-20 19:51:14 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
2005-07-20 01:46:55 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2005-07-20 19:51:14 +02:00
|
|
|
#include <wchar.h>
|
2005-07-21 18:23:54 +02:00
|
|
|
#include <string.h>
|
2005-08-08 22:06:29 +02:00
|
|
|
#include <libioP.h>
|
2005-07-20 01:46:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
int
|
2005-07-20 19:51:14 +02:00
|
|
|
__fxprintf (FILE *fp, const char *fmt, ...)
|
2005-07-20 01:46:55 +02:00
|
|
|
{
|
|
|
|
if (fp == NULL)
|
|
|
|
fp = stderr;
|
|
|
|
|
|
|
|
va_list ap;
|
2005-07-20 19:51:14 +02:00
|
|
|
va_start (ap, fmt);
|
2005-07-20 01:46:55 +02:00
|
|
|
|
|
|
|
int res;
|
|
|
|
if (_IO_fwide (fp, 0) > 0)
|
2005-07-20 19:51:14 +02:00
|
|
|
{
|
2005-07-22 17:12:23 +02:00
|
|
|
size_t len = strlen (fmt) + 1;
|
2005-07-20 19:51:14 +02:00
|
|
|
wchar_t wfmt[len];
|
2005-07-22 17:12:23 +02:00
|
|
|
for (size_t i = 0; i < len; ++i)
|
2005-07-20 19:51:14 +02:00
|
|
|
{
|
|
|
|
assert (isascii (fmt[i]));
|
|
|
|
wfmt[i] = fmt[i];
|
|
|
|
}
|
|
|
|
res = __vfwprintf (fp, wfmt, ap);
|
|
|
|
}
|
2005-07-20 01:46:55 +02:00
|
|
|
else
|
2012-05-23 13:33:15 +02:00
|
|
|
res = _IO_vfprintf (fp, fmt, ap);
|
2005-07-20 01:46:55 +02:00
|
|
|
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|