home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / CLIB1.ZIP / VFPRINTF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.4 KB  |  41 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - vfprintf.c
  3.  *
  4.  * function(s)
  5.  *      vfprintf - sends formatted output to a stream
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987,1988,1990 by Borland International    |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18. #include <stdio.h>
  19. #include <_printf.h>
  20. #include <_stdio.h>
  21.  
  22. /*---------------------------------------------------------------------*
  23.  
  24. Name        vfprintf - sends formatted output to a stream
  25.  
  26. Usage        #include <stdio.h>
  27.         #include <stdarg.h>
  28.         int vfprintf(FILE *stream, const char *format, va_list param);
  29.  
  30. Prototype in    stdio.h
  31.         stdarg.h
  32.  
  33. Description    see printf
  34.  
  35. *---------------------------------------------------------------------*/
  36. int cdecl vfprintf( FILE *F, const char *fmt, va_list ap )
  37.   {
  38.   return( __vprinter( (putnF *)__fputn, F, fmt, (void _ss *) ap ) );
  39.   }
  40.  
  41.