1HPL_fprintf(3) HPL Library Functions HPL_fprintf(3)
2
3
4
6 HPL_fprintf - fprintf + fflush wrapper.
7
9 #include "hpl.h"
10
11 void HPL_fprintf( FILE * STREAM, const char * FORM, ... );
12
14 HPL_fprintf is a wrapper around fprintf flushing the output stream.
15
17 STREAM (local input) FILE *
18 On entry, STREAM specifies the output stream.
19
20 FORM (local input) const char *
21 On entry, FORM specifies the format, i.e., how the subsequent
22 arguments are converted for output.
23
24 (local input) ...
25 On entry, ... is the list of arguments to be printed within
26 the format string.
27
29 #include "hpl.h"
30
31 int main(int argc, char *argv[])
32 {
33 HPL_fprintf( stdout, "Hello World.\n" );
34 exit(0); return(0);
35 }
36
38 HPL_abort (3), HPL_warn (3).
39
40
41
42HPL 2.2 February 24, 2016 HPL_fprintf(3)