message.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: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <conio.h>
#include <stdio.h>
#include "banner.h"
#include "error.h"
#include "message.h"
#include "system.h"
static char * usageMsg[] = {
#if defined(__TARGET_386__)
#include "usage386.gh"
#elif defined(__TARGET_AXP__)
#include "usageaxp.gh"
#elif defined(__TARGET_PPC__)
#include "usageppc.gh"
#else
#error Unrecognized CPU type
#endif
NULL
};
static int quietMode = 0;
/*
* Print the copyright banner.
*/
void BannerMessage( void )
/************************/
{
static int alreadyPrinted;
static char * helpMsg = {
banner1w( "C/C++ CL Clone for " CPU_NAME " ", _CL_CLONE_VERSION_ ) "\n"
banner2( "1995" ) "\n"
banner3 "\n"
banner3a "\n"
};
if( !alreadyPrinted && !quietMode ) {
fprintf( stderr, helpMsg );
alreadyPrinted = 1;
}
}
/*
* Read a key from the console.
*/
static int get_key( void )
/************************/
{
int ch;
ch = getch();
if( ch == 0 ) { /* handle extended keys */
ch = getch();
}
return( ch );
}
/*
* Print a help message.
*/
void PrintHelpMessage( void )
/***************************/
{
const int lineCount = 15;
int count;
int num;
int ch;
for( count=0,num=0; usageMsg[count]!=NULL; count++,num++ ) {
if( num == lineCount ) {
printf( "\t(Press return to continue)" );
fflush( stdout );
ch = get_key();
printf( "\n" );
if( ch == 'q' ) break;
num = 0;
}
printf( "%s\n", usageMsg[count] );
}
}
/*
* Print a message listing unsupported options which were used (using the
* opts string) and a complete list of unsupported options.
*/
void UnsupportedOptsMessage( const char *opts )
/***************************************8*****/
{
Warning( "Ignoring unsupported option(s): %s", opts );
}
/*
* Disable printing of the copyright banner.
*/
void QuietModeMessage( void )
/***************************/
{
quietMode = 1;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?