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: }

Defined functions

pad defined in line 3; never used
Last modified: 1986-04-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 557
Valid CSS Valid XHTML 1.0 Strict