2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
10 /*****************************************************************************
23 Scan a string with the specified arguments and write the results
24 in the specified parameters.
27 fh - Read from this stream
28 format - How to convert the input into the arguments
29 ... - Write the result in these arguments
32 The number of converted arguments.
45 ******************************************************************************/
50 va_start (args
, format
);
52 retval
= vfscanf (fh
, format
, args
);