home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / compiler / clib / vscanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-28  |  857 b   |  50 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: vscanf.c,v 1.1 1997/01/28 15:32:34 digulla Exp $
  4.  
  5.     Desc: Implementation of vscanf()
  6.     Lang: english
  7. */
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12. #include <stdio.h>
  13. #include <stdarg.h>
  14.  
  15.     int vscanf (
  16.  
  17. /*  SYNOPSIS */
  18.     const char * format,
  19.     va_list      args)
  20.  
  21. /*  FUNCTION
  22.     Scan the standard input and convert it into the arguments as
  23.     specified by format.
  24.  
  25.     INPUTS
  26.     format - A scanf() format string.
  27.     args - A list of arguments for the results
  28.  
  29.     RESULT
  30.     The number of converted parameters.
  31.  
  32.     NOTES
  33.  
  34.     EXAMPLE
  35.  
  36.     BUGS
  37.  
  38.     SEE ALSO
  39.  
  40.     INTERNALS
  41.  
  42.     HISTORY
  43.     06.12.1996 digulla created
  44.  
  45. ******************************************************************************/
  46. {
  47.     return vfscanf (stdin, format, args);
  48. } /* vscanf */
  49.  
  50.