Go to the source code of this file.
Functions | |
int | wcsprintf_set (FILE *wcsout) |
Set output disposition for wcsprintf(). | |
int | wcsprintf (const char *format,...) |
Print function used by WCSLIB diagnostic routines. | |
const char * | wcsprintf_buf (void) |
Get the address of the internal string buffer. |
int wcsprintf_set | ( | FILE * | wcsout | ) |
wcsprintf_set() sets the output disposition for wcsprintf() which is used by the celprt(), linprt(), prjprt(), spcprt(), tabprt(), and wcsprt() routines.
[in] | wcsout | Pointer to an output stream that has been opened for writing, e.g. by the fopen() stdio library function, or one of the predefined stdio output streams - stdout and stderr. If zero (NULL), output is written to an internally-allocated string buffer, the address of which may be obtained by wcsprintf_buf(). |
int wcsprintf | ( | const char * | format, | |
... | ||||
) |
wcsprintf() is used by the celprt(), linprt(), prjprt(), spcprt(), tabprt(), and wcsprt() routines. Its output may be redirected to a file or string buffer via wcsprintf_set().
[in] | format | Format string, passed to one of the printf(3) family of stdio library functions. |
[in] | ... | Argument list matching format, as per printf(3). |
wcsprintf_buf | ( | void | ) |
wcsprintf_buf() returns the address of the internal string buffer created when wcsprintf_set() is invoked with its FILE* argument set to zero.