码迷,mamicode.com
首页 > Windows程序 > 详细

Ubuntu使用Windows下的conio.h

时间:2015-07-24 20:30:40      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

把虚线框里面的内容粘贴进文档文本里面

----------------------------------------------------------------------------------------------------------

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


static struct termios old, new;


/* Initialize new terminal i/o settings */
void initTermios(int echo) 
{
  tcgetattr(0, &old); /* grab old terminal i/o settings */
  new = old; /* make new settings same as old settings */
  new.c_lflag &= ~ICANON; /* disable buffered i/o */
  new.c_lflag &= echo ? ECHO : ~ECHO; /* set echo mode */
  tcsetattr(0, TCSANOW, &new); /* use these new terminal i/o settings now */
}


/* Restore old terminal i/o settings */
void resetTermios(void) 
{
  tcsetattr(0, TCSANOW, &old);
}


/* Read 1 character - echo defines echo mode */
char getch_(int echo) 
{
  char ch;
  initTermios(echo);
  ch = getchar();
  resetTermios();
  return ch;
}


/* Read 1 character without echo */
char getch(void) 
{
  return getch_(0);
}


/* Read 1 character with echo */
char getche(void) 
{
  return getch_(1);
}


/* Let‘s test it out */

----------------------------------------------------------------------------------------------------

另存为到          /usr/include/conio.h

Ubuntu使用Windows下的conio.h

标签:

原文地址:http://www.cnblogs.com/acbingo/p/4674388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!