lineprt.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 138 行
C
138 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: LINEPRT.C - line print routines
*
****************************************************************************/
/*
LINEPRT.C - line print routines
Date By Reason
==== == ======
11-apr-90 C.G.Eisler defined
25-jul-90 C.G.Eisler more work
19-oct-91 C.G.Eisler cleaned up
*/
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <malloc.h>
#define TRUE 1
#define FALSE 0
extern void Die( char *str );
static int _dropped = TRUE;
static int _lastlinelen = 0;
// 12345678 1 2345678 2 2345678 3 2345678 4 2345678 5 2345678 6 23456
static char _spaces[] = " ";
char *buffer;
/* PrintALine - printf text on the current line */
void PrintALine( char *str, ... )
{
va_list al;
char bob[256];
int len, i;
va_start( al, str );
vsprintf( bob, str, al );
va_end( al );
len = strlen( bob );
i = _lastlinelen - len;
if( i < 0 )
i = 0;
_spaces[i] = 0;
printf( "%c%s%s", ( char ) 13, bob, _spaces );
_spaces[i] = ' ';
_lastlinelen = len;
_dropped = FALSE;
}
/* PrintALineThenDrop - printf text on the current line, then drop */
void PrintALineThenDrop( char *str, ... )
{
va_list al;
char bob[256];
int len, i;
va_start( al, str );
vsprintf( bob, str, al );
va_end( al );
len = strlen( bob );
i = _lastlinelen - len;
if( i < 0 )
i = 0;
_spaces[i] = 0;
printf( "%c%s%s\n", 13, bob, _spaces );
_spaces[i] = ' ';
_lastlinelen = 0;
_dropped = TRUE;
}
/* DropPrintALine - printf text on the next line */
void DropPrintALine( char *str, ... )
{
va_list al;
char bob[256];
va_start( al, str );
vsprintf( bob, str, al );
va_end( al );
_lastlinelen = strlen( bob );
if( !_dropped )
printf( "\n" );
printf( "%s", bob );
_dropped = FALSE;
}
/* DropALineDammit - drop down one line, for sure */
void DropALineDammit( void )
{
_dropped = TRUE;
_lastlinelen = 0;
printf( "\n" );
}
/* DropALine - drop down one line */
void DropALine( void )
{
if( _dropped )
return;
DropALineDammit();
}
/* StartPrint - allocate buffer for unbufferd io */
void StartPrint( void )
{
buffer = malloc( BUFSIZ );
if( buffer == NULL )
Die( "Out of memory!" );
setvbuf( stdout, buffer, _IONBF, BUFSIZ );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?