compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / vscanf.c
blob70be0036e471b73bf5ac62c3f3f9421f693deaef
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Implementation of vscanf().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <stdio.h>
12 #include <stdarg.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 */