home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - fprintf.c
- *
- * function(s)
- * fprintf - sends formatted output to a stream
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
-
- #include <stdio.h>
- #include <_stdio.h>
- #include <_printf.h>
-
- /*---------------------------------------------------------------------*
-
- Name fprintf - sends formatted output to a stream
-
- Usage int fprintf(FILE *stream, const char *format [,argument, ...]);
-
- Prototype in stdio.h
-
- Description member of the printf family. fprintf send its output
- to the named stream.
-
- Return value success : the number of bytes output.
- error : EOF
-
- *------------------------------------------------------------------------*/
- int cdecl fprintf (FILE *F, const char *fmt, ...)
- {
- return( __vprinter ((putnF *)__fputn, F, fmt, (void _ss *) _va_ptr ) );
- }
-