HPL_fprintf - Man Page
fprintf + fflush wrapper.
Synopsis
#include "hpl.h"
 void HPL_fprintf( FILE * STREAM, const char * FORM, ... );
Description
HPL_fprintf is a wrapper around fprintf flushing the output stream.
Arguments
- STREAM (local input) FILE *
- On entry, STREAM specifies the output stream. 
- FORM (local input) const char *
- On entry, FORM specifies the format, i.e., how the subsequent arguments are converted for output. 
- (local input) ...
- On entry, ... is the list of arguments to be printed within the format string. 
Example
#include "hpl.h"
 int main(int argc, char *argv[])
{
  HPL_fprintf( stdout, "Hello World.\n" );
  exit(0); return(0);
}
See Also
Referenced By
HPL_abort(3), HPL_dlange(3), HPL_dlaprnt(3), HPL_pabort(3), HPL_pdlange(3), HPL_pdlaprnt(3), HPL_pwarn(3), HPL_warn(3).
February 24, 2016 HPL 2.2 HPL Library Functions