]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iovswscanf.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / libio / iovswscanf.c
CommitLineData
bfff8b1b 1/* Copyright (C) 1993-2017 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
d64b6ad0 3
41bdb6e2
AJ
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
d64b6ad0 8
41bdb6e2
AJ
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
d64b6ad0 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
d64b6ad0 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
d64b6ad0 17
41bdb6e2
AJ
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
d64b6ad0
UD
26
27#include "libioP.h"
28#include "strfile.h"
29#include <wchar.h>
30
31int
c6251f03 32__vswscanf (const wchar_t *string, const wchar_t *format, _IO_va_list args)
d64b6ad0
UD
33{
34 int ret;
35 _IO_strfile sf;
36 struct _IO_wide_data wd;
37#ifdef _IO_MTSAFE_IO
c020d48c 38 sf._sbf._f._lock = NULL;
d64b6ad0 39#endif
c020d48c 40 _IO_no_init (&sf._sbf._f, _IO_USER_LOCK, 0, &wd, &_IO_wstr_jumps);
e1b13a63 41 _IO_fwide (&sf._sbf._f, 1);
d64b6ad0 42 _IO_wstr_init_static (&sf._sbf._f, (wchar_t *)string, 0, NULL);
41d998a6 43 ret = _IO_vfwscanf ((_IO_FILE *) &sf._sbf, format, args, NULL);
d64b6ad0
UD
44 return ret;
45}
45dcd79f 46libc_hidden_def (__vswscanf)
c6251f03 47ldbl_hidden_def (__vswscanf, vswscanf)
45dcd79f 48ldbl_weak_alias (__vswscanf, vswscanf)