bipom_vsprintf


format string

void bipom_vsprintf(char *buffer, char *format, va_list arg_list);

Parameters


buffer - destination buffer. 
format - string with a formatt
arg_list - pointer to argument list which returned from va_start()

allowed formats
	%d - for integer values - decimal view
	%Nd - for integer values - decimal view, min length will N. Space useda s padding.
	%PNd - for integer values - decimal view, min length will N. P used as padding.
	%x - for integer values - hex view
	%s - string (zero should be at the end of the string)
	%.Nf - float values; N - [0..9] - number of digits after point

Return Value


N/A

Remarks


N/A

Requirements


convert.h

Example


N/A

Library


STM C Library Reference