view target-utils/libprintf/sprintf_putchar.c @ 25:796da8d60b23

target-utils: top-level Makefile created like in the Book-E-MON and SDSL CPE source trees by the same author
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 04 May 2013 05:02:04 +0000
parents 40f607bb0a2c
children 84611183c8c3
line wrap: on
line source

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