https://github.com/jwerle/getch.c
getch() implementation
https://github.com/jwerle/getch.c
Last synced: 9 months ago
JSON representation
getch() implementation
- Host: GitHub
- URL: https://github.com/jwerle/getch.c
- Owner: jwerle
- License: mit
- Created: 2013-10-17T19:58:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-01T14:57:55.000Z (about 12 years ago)
- Last Synced: 2025-08-25T08:13:36.960Z (10 months ago)
- Language: C
- Size: 152 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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