1*5af32e75SAxel Dörfler /* Copyright (C) 1993, 1997-2000, 2001, 2002 Free Software Foundation, Inc.
2*5af32e75SAxel Dörfler This file is part of the GNU C Library.
3*5af32e75SAxel Dörfler
4*5af32e75SAxel Dörfler The GNU C Library is free software; you can redistribute it and/or
5*5af32e75SAxel Dörfler modify it under the terms of the GNU Lesser General Public
6*5af32e75SAxel Dörfler License as published by the Free Software Foundation; either
7*5af32e75SAxel Dörfler version 2.1 of the License, or (at your option) any later version.
8*5af32e75SAxel Dörfler
9*5af32e75SAxel Dörfler The GNU C Library is distributed in the hope that it will be useful,
10*5af32e75SAxel Dörfler but WITHOUT ANY WARRANTY; without even the implied warranty of
11*5af32e75SAxel Dörfler MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12*5af32e75SAxel Dörfler Lesser General Public License for more details.
13*5af32e75SAxel Dörfler
14*5af32e75SAxel Dörfler You should have received a copy of the GNU Lesser General Public
15*5af32e75SAxel Dörfler License along with the GNU C Library; if not, write to the Free
16*5af32e75SAxel Dörfler Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17*5af32e75SAxel Dörfler 02111-1307 USA.
18*5af32e75SAxel Dörfler
19*5af32e75SAxel Dörfler As a special exception, if you link the code in this file with
20*5af32e75SAxel Dörfler files compiled with a GNU compiler to produce an executable,
21*5af32e75SAxel Dörfler that does not cause the resulting executable to be covered by
22*5af32e75SAxel Dörfler the GNU Lesser General Public License. This exception does not
23*5af32e75SAxel Dörfler however invalidate any other reasons why the executable file
24*5af32e75SAxel Dörfler might be covered by the GNU Lesser General Public License.
25*5af32e75SAxel Dörfler This exception applies to code released by its copyright holders
26*5af32e75SAxel Dörfler in files containing the exception. */
27*5af32e75SAxel Dörfler
28*5af32e75SAxel Dörfler #include "libioP.h"
29*5af32e75SAxel Dörfler #include "strfile.h"
30*5af32e75SAxel Dörfler
31*5af32e75SAxel Dörfler int
_IO_vsscanf(string,format,args)32*5af32e75SAxel Dörfler _IO_vsscanf (string, format, args)
33*5af32e75SAxel Dörfler const char *string;
34*5af32e75SAxel Dörfler const char *format;
35*5af32e75SAxel Dörfler _IO_va_list args;
36*5af32e75SAxel Dörfler {
37*5af32e75SAxel Dörfler int ret;
38*5af32e75SAxel Dörfler _IO_strfile sf;
39*5af32e75SAxel Dörfler #ifdef _IO_MTSAFE_IO
40*5af32e75SAxel Dörfler sf._sbf._f._lock = NULL;
41*5af32e75SAxel Dörfler #endif
42*5af32e75SAxel Dörfler _IO_no_init (&sf._sbf._f, _IO_USER_LOCK, -1, NULL, NULL);
43*5af32e75SAxel Dörfler _IO_JUMPS ((struct _IO_FILE_plus *) &sf._sbf) = &_IO_str_jumps;
44*5af32e75SAxel Dörfler INTUSE(_IO_str_init_static) (&sf, (char*)string, 0, NULL);
45*5af32e75SAxel Dörfler ret = INTUSE(_IO_vfscanf) ((_IO_FILE *) &sf._sbf, format, args, NULL);
46*5af32e75SAxel Dörfler return ret;
47*5af32e75SAxel Dörfler }
48*5af32e75SAxel Dörfler
49*5af32e75SAxel Dörfler #ifdef weak_alias
50*5af32e75SAxel Dörfler weak_alias (_IO_vsscanf, __vsscanf)
51*5af32e75SAxel Dörfler weak_alias (_IO_vsscanf, vsscanf)
52*5af32e75SAxel Dörfler #endif
53