Datasheet

sprintl
sprinti
571
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Description
The optional characters l or L may immediately precede conversion_type to
respectively specify long versions of the integer types
d, i, u, o, x, and X.
You must ensure that the argument type matches that of the format specification. You
can use type casts to ensure that the proper type is passed to
sprintf.
Prototype
sprintl(char *wh, const char *f,...);
Returns The function returns the number of characters actually written to destination string.
Description The same as sprintf, except it doesn't support float-type numbers.
Prototype
sprinti(char *wh, const char *f,...);
Returns The function returns the number of characters actually written to destination string.
Description The same as sprintf, except it doesn't support long integers and float-type numbers.