| 
 
 NAMEuvszprintf - Writes formatted data into a buffer, using size and variable arguments. Allegro game programming library. SYNOPSIS#include <allegro.h> int uvszprintf(char *buf, int size, const char *format, va_list args); DESCRIPTIONThis is like uszprintf(), but you pass the variable argument list directly, instead of the arguments themselves. Example: 
 RETURN VALUEReturns the number of characters that would have been written without eventual truncation (like with uvsprintf), not including the terminating null character. SEE ALSOuconvert(3), uszprintf(3), uvsprintf(3) 
 
  |