gpt4 book ai didi

c - 如何在cygwin中包含conio.h?

转载 作者:行者123 更新时间:2023-11-30 17:14:13 29 4
gpt4 key购买 nike

我想使用 getch();在 Cygwin 中。于是我就搜了路,添加了代码“conio.h”。

#include <termios.h>
#include <unistd.h>
#include <stdio.h>

/* reads from keypress, doesn't echo */
int getch(void)
{
struct termios oldattr, newattr;
int ch;
tcgetattr( STDIN_FILENO, &oldattr );
newattr = oldattr;
newattr.c_lflag &= ~( ICANON | ECHO );
tcsetattr( STDIN_FILENO, TCSANOW, &newattr );
ch = getchar();
tcsetattr( STDIN_FILENO, TCSANOW, &oldattr );
return ch;
}

/* reads from keypress, echoes */
int getche(void)
{
struct termios oldattr, newattr;
int ch;
tcgetattr( STDIN_FILENO, &oldattr );
newattr = oldattr;
newattr.c_lflag &= ~( ICANON );
tcsetattr( STDIN_FILENO, TCSANOW, &newattr );
ch = getchar();
tcsetattr( STDIN_FILENO, TCSANOW, &oldattr );
return ch;
}

保存此代码“conio.h”后,我无法使用getch();。错误消息是 fatal error :conio.h:没有这样的文件或目录 #包括 ^编译终止。

如何解决?

最佳答案

想要使用 conio.c 文件中的函数(应该是您发布的文件的适当文件扩展名)的任何其他文件都需要具有这些函数的原型(prototype)。

具体来说,您需要第二个文件 conio.h,如下所示;

#ifndef CONIO_H
#define CONIO_H

int getch( void );
int getche( void );

#endif // CONIO_H

conio.h 文件需要在任何想要使用这些函数的文件中#include“conio.h”

关于c - 如何在cygwin中包含conio.h?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30426223/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com