2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
11 /*****************************************************************************
24 Scan the specified string and convert it into the arguments as
28 str - The routine examines this string.
29 format - Format string. See scanf() for a description
30 ... - Arguments for the result
33 The number of converted parameters.
42 fscanf(), vscanf(), vfscanf(), vsscanf()
46 ******************************************************************************/
51 va_start(args
, format
);
52 retval
= vsscanf(str
, format
, args
);