Linux에서 getch() 구현

Unix/Linux 2013. 3. 15. 16:18

#include <stdio.h>
#include <termio.h>

 int getch(void)
    {
        int ch;
        struct termios buf, save;
        tcgetattr(0,&save);
        buf = save;
        buf.c_lflag &= ~(ICANON|ECHO);
        buf.c_cc[VMIN] = 1;
        buf.c_cc[VTIME] = 0;
        tcsetattr(0, TCSAFLUSH, &buf);
        ch = getchar();
        tcsetattr(0, TCSAFLUSH, &save);
        return ch;
    }

 

'Unix/Linux' 카테고리의 다른 글

tgz 압축/푸는 법  (0) 2014.02.27
.svn 파일 삭제하는법  (0) 2014.02.27
Linux에서 _kbhit() 구현  (0) 2013.03.15
^M 문자  (0) 2013.03.14
vi 편집기 사용법  (0) 2013.03.14
:

Linux에서 _kbhit() 구현

Unix/Linux 2013. 3. 15. 16:16
Name : Linux에서 _kbhit() 구현
Compiler : gcc 4.1.2
Enviroment : Cent OS 5.5 (2.6.18)
Compile command : (default)
---------------------------------------------------------------------------

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

int kbhit(void)
{
  struct termios oldt, newt;
  int ch;
  int oldf;

  tcgetattr(STDIN_FILENO, &oldt);
  newt = oldt;
  newt.c_lflag &= ~(ICANON | ECHO);
  tcsetattr(STDIN_FILENO, TCSANOW, &newt);
  oldf = fcntl(STDIN_FILENO, F_GETFL, 0);
  fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK);

  ch = getchar();

  tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
  fcntl(STDIN_FILENO, F_SETFL, oldf);

  if(ch != EOF)
  {
    ungetc(ch, stdin);
    return 1;
  }

  return 0;
}

int main(void)
{
  while(!kbhit())
    puts("Press a key!");
  printf("You pressed '%c'!\n", getchar());
  return 0;
}

 

'Unix/Linux' 카테고리의 다른 글

tgz 압축/푸는 법  (0) 2014.02.27
.svn 파일 삭제하는법  (0) 2014.02.27
Linux에서 getch() 구현  (0) 2013.03.15
^M 문자  (0) 2013.03.14
vi 편집기 사용법  (0) 2013.03.14
:

^M 문자

Unix/Linux 2013. 3. 14. 16:08

윈도우에서 작업한 text 문서를 리눅스등에서 열경우에 ^M가 따라온다.

 

1. vi 에서 파일모드 수정

:set fileformat=unix (후 저장 하면 없어짐)

:set fileformat=dos (후 저장하면 다시 생김)

 

2. tr 명령사용

cat sourcefile |tr -d ^M >outfile

 

^M 은 Ctrl+v Ctrl+M

'Unix/Linux' 카테고리의 다른 글

tgz 압축/푸는 법  (0) 2014.02.27
.svn 파일 삭제하는법  (0) 2014.02.27
Linux에서 getch() 구현  (0) 2013.03.15
Linux에서 _kbhit() 구현  (0) 2013.03.15
vi 편집기 사용법  (0) 2013.03.14
: