- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / vscanf.c
blobd829aeb0c8fa2107b1102f055371949c40899575
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function vscanf()
6 */
7 #include <stdarg.h>
9 /*****************************************************************************
11 NAME */
12 #include <stdio.h>
14 int vscanf (
16 /* SYNOPSIS */
17 const char * format,
18 va_list args)
20 /* FUNCTION
21 Scan the standard input and convert it into the arguments as
22 specified by format.
24 INPUTS
25 format - A scanf() format string.
26 args - A list of arguments for the results
28 RESULT
29 The number of converted parameters.
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 ******************************************************************************/
43 return vfscanf (stdin, format, args);
44 } /* vscanf */