作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 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/
我是一名优秀的程序员,十分优秀!