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: }
Last modified: 1980-12-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1544
Valid CSS Valid XHTML 1.0 Strict