![]() |
![]()
| ![]() |
![]()
NAMEuszprintf - Writes formatted data into a buffer, specifying size. Allegro game programming library. SYNOPSIS#include <allegro.h> int uszprintf(char *buf, int size, const char *format, ...); DESCRIPTIONThis function writes formatted data into the output buffer, whose length in bytes is specified by `size' and which is guaranteed to be NULL terminated. Example:
RETURN VALUEReturns the number of characters that would have been written without eventual truncation (like with usprintf), not including the terminating null character. SEE ALSOuconvert(3), usprintf(3), uvszprintf(3), exgui(3)
|