how can i detect keyboard event in c language without using third party libraries? Should I use signal handling?
|
|
What about good old kbhit ? If I understand the question correctly this will work. Here is the kbhit implementation on Linux. |
|||
|
|
|
|
There's not a standard way, but these should get you started. Windows:
Unix: Use this code from W. Richard Stevens' Unix Programming book to set your terminal in raw mode, and then use read().
|
||
|
|
|
|
You really should use third party libraries. There's definitely no platform-independent way to do it in ANSI C. Signal handling is not the way. |
||
|
|
|
|
Standard C does not have any facilities for detecting keyboard events, unfortunately. You have to rely on platform-specific extensions. Signal handling wont help you. |
||
|
|
