2.11BSD/ingres/source/gutil/pad.c

Compare this file to the similar file:
Show the results in this format:

/*
**  PAD STRING OUT WITH BLANKS
**
**	This routine is an in-place pmove which always pads
**	with blanks.
*/

pad(s, n)
char	*s;
int	n;
{
	register char	*ss;

	ss = s;
	pmove(ss, ss, n, ' ');
}