/*- * %sccs.include.proprietary.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strout.c 8.1 (Berkeley) 06/04/93"; #endif /* LIBC_SCCS and not lint */ #include _strout(count, string, adjust, file, fillch) register char *string; register count; int adjust; register FILE *file; { while (adjust < 0) { if (*string=='-' && fillch=='0') { putc(*string++, file); count--; } putc(fillch, file); adjust++; } while (--count>=0) putc(*string++, file); while (adjust) { putc(fillch, file); adjust--; } }