Advertisement
jpenguin

getch.h

Feb 24th, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #ifndef GETCH_H
  2. #define GETCH_H 1
  3.  
  4. #include <signal.h>
  5.  
  6. int
  7. getch (void);
  8.  
  9. static void
  10. on_signal (int);
  11.  
  12. static int signals[] = {
  13.   SIGABRT,
  14.   SIGINT,
  15.   SIGKILL,
  16.   SIGQUIT,
  17.   SIGSTOP,
  18.   SIGTERM
  19. };
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement