1: char    xstr[];
   2: #line 1 "xprintf.c"
   3: 
   4: 
   5: 
   6: 
   7: 
   8: 
   9: 
  10: 
  11: 
  12: #line 13 "xprintf.c"
  13: 
  14: 
  15: printf(fmt, args)
  16: char *fmt;
  17: {
  18:     _doprnt(fmt, &args, 0);
  19: }
  20: 
  21: _strout(string, count, adjust, file, fillch)
  22: register char *string;
  23: register count;
  24: int adjust;
  25: register struct _iobuf *file;
  26: {
  27:     while (adjust < 0) {
  28:         if (*string=='-' && fillch=='0') {
  29:             putchar(*string++);
  30:             count--;
  31:         }
  32:         putchar(fillch);
  33:         adjust++;
  34:     }
  35:     while (--count>=0)
  36:         putchar(*string++);
  37:     while (adjust) {
  38:         putchar(fillch);
  39:         adjust--;
  40:     }
  41: }

Defined functions

_strout defined in line 21; never used
printf defined in line 15; never used

Defined variables

xstr defined in line 1; never used
Last modified: 1982-10-21
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 561
Valid CSS Valid XHTML 1.0 Strict