]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iovswscanf.c
Use <> for include of kernel-features.h.
[thirdparty/glibc.git] / libio / iovswscanf.c
CommitLineData
c6251f03
RM
1/* Copyright (C) 1993, 1997-2000, 2001, 2002, 2006
2 Free Software Foundation, Inc.
41bdb6e2 3 This file is part of the GNU C Library.
d64b6ad0 4
41bdb6e2
AJ
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.
d64b6ad0 9
41bdb6e2
AJ
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
d64b6ad0 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
d64b6ad0 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
d64b6ad0 19
41bdb6e2
AJ
20 As a special exception, if you link the code in this file with
21 files compiled with a GNU compiler to produce an executable,
22 that does not cause the resulting executable to be covered by
23 the GNU Lesser General Public License. This exception does not
24 however invalidate any other reasons why the executable file
25 might be covered by the GNU Lesser General Public License.
26 This exception applies to code released by its copyright holders
27 in files containing the exception. */
d64b6ad0
UD
28
29#include "libioP.h"
30#include "strfile.h"
31#include <wchar.h>
32
33int
c6251f03 34__vswscanf (const wchar_t *string, const wchar_t *format, _IO_va_list args)
d64b6ad0
UD
35{
36 int ret;
37 _IO_strfile sf;
38 struct _IO_wide_data wd;
39#ifdef _IO_MTSAFE_IO
c020d48c 40 sf._sbf._f._lock = NULL;
d64b6ad0 41#endif
c020d48c 42 _IO_no_init (&sf._sbf._f, _IO_USER_LOCK, 0, &wd, &_IO_wstr_jumps);
e1b13a63 43 _IO_fwide (&sf._sbf._f, 1);
d64b6ad0 44 _IO_wstr_init_static (&sf._sbf._f, (wchar_t *)string, 0, NULL);
41d998a6 45 ret = _IO_vfwscanf ((_IO_FILE *) &sf._sbf, format, args, NULL);
d64b6ad0
UD
46 return ret;
47}
c6251f03
RM
48ldbl_hidden_def (__vswscanf, vswscanf)
49ldbl_strong_alias (__vswscanf, vswscanf)