This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int vfprintf(FILE *f,
const char *format,
va_list args);
int vprintf(const char *format, va_list args);
int vsprintf(char *s,
const char *format,
va_list args);
These functions are the same as fprintf(), printf(), and sprintf(), except that they take a va_list instead of an open parameter list as argument.
For a detailed format description see sprintf().
The number of characters written, if successful; a negative number otherwise.