strputchar Function (tigcc.a)

stdio.h

void strputchar (char c, void **ptr);

Default vcbprintf callback function used in sprintf.

strputchar is callback function (passed to vcbprintf which is used internally for implementation of sprintf (in TIOS) and vsprintf functions. It does nothing more than

*((*(char**)ptr)++) = ch;


Used by: vsprintf