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

📄 lib.c

📁 Due to an increase in demand for and questions about direct disk access for Micrososft platforms, a
💻 C
字号:
/*
 * lib,c        misc, stuff (see also win32\wlib.c)
 *
 * This file is part of the BETA version of DISKLIB
 * Copyright (C) 1998, Gregg Jennings
 *
 * See README.TXT for information about re-distribution.
 * See DISKLIB.TXT for information about usage.
 *
 */

#include <stdio.h>
#include <stdlib.h>

extern int confirm(void)
{
#if LONG_INPUT          /* full word input only */
char buf[BUFSIZ];

    printf("\nAre you sure? [yes,No] ");
    fgets(buf,BUFSIZ,stdin);
    return strcmp(buf,"yes\n") == 0;

#else                   /* a 'y' will do */
int c;

    printf("\nAre you sure? [y,N] ");
    c = getchar();
    if (c != '\n')
        while (getchar() != '\n')
            ;
    return c == 'y';
#endif
}

extern int ask(const char *str)
{
#if LONG_INPUT          /* full word input only */
char buf[BUFSIZ];

    if (str)
        printf("%s",str);
    printf(" [yes,No] ");
    fgets(buf,BUFSIZ,stdin);
    return strcmp(buf,"yes\n") == 0;

#else                   /* a 'y' will do */
int c;

    if (str)
        printf("%s",str);
    printf(" [y,N] ");
    c = getchar();
    if (c != '\n')
        while (getchar() != '\n')
            ;
    return c == 'y';
#endif
}


extern void die(const char *msg, const char *fmt, int arg)
{
    printf("\n%s",msg);
    if (fmt)
        printf(fmt,arg);
    printf("\n");
    exit(1);
}

⌨️ 快捷键说明

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