view target-utils/libprintf/sprintf_putchar.c @ 104:f65df1d640aa

pirexplore: approaching sanity with the LCD
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 02 Sep 2013 03:07:07 +0000
parents 40f607bb0a2c
children 84611183c8c3
line wrap: on
line source

void
_sprintf_putchar(ch, pp)
	int ch;
	char **pp;
{
	**pp = ch;
	(*pp)++;
}