⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strout.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/* @(#)strout.c	4.1 (Berkeley) 12/21/80 */#include	<stdio.h>_strout(count, string, adjust, file, fillch)register char *string;register count;int adjust;register struct _iobuf *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--;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -