include/keyboard.h
changeset 0 06dd3b8d90ad
equal deleted inserted replaced
-1:000000000000 0:06dd3b8d90ad
       
     1 /**
       
     2  *  $Id: keyboard.h 48 2008-01-09 23:59:19Z mbroeker $
       
     3  * $URL: http://localhost/svn/c/VirtualReader/trunk/include/keyboard.h $
       
     4  */
       
     5 
       
     6 #ifndef __KEYBOARD_H__
       
     7 #define __KEYBOARD_H__
       
     8 
       
     9 #include <stdio.h>
       
    10 #include <unistd.h>
       
    11 #include <termios.h>
       
    12 #ifdef DEBUG
       
    13 #include <ctype.h>
       
    14 #endif
       
    15 
       
    16 char getSingleKey (void);
       
    17 
       
    18 #endif