pad X
1: /* 2: ** PAD STRING OUT WITH BLANKS 3: ** 4: ** This routine is an in-place pmove which always pads 5: ** with blanks. 6: */ 7: 8: pad(s, n) 9: char *s; 10: int n; 11: { 12: register char *ss; 13: 14: ss = s; 15: pmove(ss, ss, n, ' '); 16: }