# getch.c **Repository Path**: mimind/getch.c ## Basic Information - **Project Name**: getch.c - **Description**: getch() implementation - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-26 - **Last Updated**: 2021-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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