1: # include <sccs.h> 2: 3: SCCSID(@(#)pad.c 8.1 12/31/84) 4: 5: /* 6: ** PAD STRING OUT WITH BLANKS 7: ** 8: ** This routine is an in-place pmove which always pads 9: ** with blanks. 10: */ 11: 12: pad(s, n) 13: char *s; 14: int n; 15: { 16: register char *ss; 17: 18: ss = s; 19: pmove(ss, ss, n, ' '); 20: }