2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 Scan a stream and write the result in the parameters.
7 /* Original source from libnix */
13 /*****************************************************************************
26 Read the scream, scan it as the format specified and write the
27 result of the conversion into the specified arguments.
30 stream - A stream to read from
31 format - A scanf() format string.
32 args - A list of arguments for the results.
35 The number of converted arguments.
47 ******************************************************************************/
51 return __vcscan (stream
, (int (*)(void *))fgetc
, (int (*)(int, void *))ungetc
, format
, args
);