qvm_outff()

Output a formatted string for a fatal or internal error

Synopsis:

#include <qvm/outpipe.h>
void qvm_outff(const unsigned int attr,
               const char *const fmt,
               ...)

Arguments:

attr
The message-level attribute.
fmt
A pointer to a printf-like formatted string.
...
Optional arguments for the string referenced by fmt.

Description:

This function outputs a string formatted in printf() style to the outpipes defined in the configuration. It is designed for fatal or internal errors, and must be used for these errors only.
Note:

This function is deprecated and will be removed soon; use qvm_fatal() instead.