An open API service indexing awesome lists of open source software.

https://github.com/jwerle/getch.c

getch() implementation
https://github.com/jwerle/getch.c

Last synced: 9 months ago
JSON representation

getch() implementation

Awesome Lists containing this project

README

          

getch.c
=======

getch() implementation

## install

```sh
$ clib install jwerle/getch.h
```

## usage

```c
int c;
while ((c = getch()) != EOF) {
printf("c = %c\n", c);
}
```

## license

MIT