All pastes #2077549 Raw Edit

nilesh

public text v1 · immutable
#2077549 ·published 2011-08-21 08:28 UTC
rendered paste body
#ifndef CONIO_H#define CONIO_H 1#include <stdio.h>#include <stdlib.h>char getch() {  system("stty raw");  char c = getchar();  system("stty cooked");  return c;}void clrscr() {  printf("\033[2J");}#endif