home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / vprintf.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  361 b   |  20 lines

  1. @node vprintf, stdio
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdio.h>
  6. #include <stdarg.h>
  7.  
  8. int vprintf(const char *format, va_list arguments);
  9. @end example
  10.  
  11. @subheading Description
  12.  
  13. Sends formatted output from the @var{arguments} to @code{stdout}. 
  14. @xref{printf}. @xref{vfprintf}.
  15.  
  16. @subheading Return Value
  17.  
  18. The number of characters written.
  19.  
  20.