aboutsummaryrefslogtreecommitdiffhomepage
path: root/input_common.c
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 09:51:16 +0800
commitc6372a1b3f56d7022f135b8f1baeaff44816ec7c (patch)
tree1e274b07fc1942d7f39d334771c7d621a164b15f /input_common.c
parent41b8db063c032c673e366d81bccf37022b9c1d4f (diff)
remove trailing spaces
This is done by `sed -i -e 's/[ \t]*$//' *.[c,h]`, which should not introduce any functionality change.
Diffstat (limited to 'input_common.c')
-rw-r--r--input_common.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/input_common.c b/input_common.c
index 1a2d2d21..117b464d 100644
--- a/input_common.c
+++ b/input_common.c
@@ -1,5 +1,5 @@
/** \file input_common.c
-
+
Implementation file for the low level input library
*/
@@ -55,7 +55,7 @@ void input_common_init( int (*ih)() )
void input_common_destroy()
{
-
+
}
/**
@@ -66,13 +66,13 @@ static wint_t readb()
{
unsigned char arr[1];
int do_loop = 0;
-
+
do
{
- fd_set fd;
+ fd_set fd;
int fd_max=1;
int res;
-
+
FD_ZERO( &fd );
FD_SET( 0, &fd );
if( env_universal_server.fd > 0 )
@@ -80,9 +80,9 @@ static wint_t readb()
FD_SET( env_universal_server.fd, &fd );
fd_max = env_universal_server.fd+1;
}
-
- do_loop = 0;
-
+
+ do_loop = 0;
+
res = select( fd_max, &fd, 0, 0, 0 );
if( res==-1 )
{
@@ -102,10 +102,10 @@ static wint_t readb()
{
return lookahead_arr[--lookahead_count];
}
-
+
}
-
-
+
+
do_loop = 1;
break;
}
@@ -116,7 +116,7 @@ static wint_t readb()
*/
return R_EOF;
}
- }
+ }
}
else
{
@@ -124,7 +124,7 @@ static wint_t readb()
{
if( FD_ISSET( env_universal_server.fd, &fd ) )
{
- debug( 3, L"Wake up on universal variable event" );
+ debug( 3, L"Wake up on universal variable event" );
env_universal_read_all();
do_loop = 1;
@@ -132,7 +132,7 @@ static wint_t readb()
{
return lookahead_arr[--lookahead_count];
}
- }
+ }
}
if( FD_ISSET( 0, &fd ) )
{
@@ -144,11 +144,11 @@ static wint_t readb()
return R_EOF;
}
do_loop = 0;
- }
+ }
}
}
while( do_loop );
-
+
return arr[0];
}
@@ -167,16 +167,16 @@ wchar_t input_common_readch( int timed )
1000 * WAIT_ON_ESCAPE
}
;
-
+
FD_ZERO( &fds );
FD_SET( 0, &fds );
count = select(1, &fds, 0, 0, &tm);
-
+
switch( count )
{
case 0:
return WEOF;
-
+
case -1:
return WEOF;
break;
@@ -185,7 +185,7 @@ wchar_t input_common_readch( int timed )
}
}
-
+
wchar_t res;
static mbstate_t state;
@@ -193,33 +193,33 @@ wchar_t input_common_readch( int timed )
{
wint_t b = readb();
char bb;
-
+
int sz;
-
+
if( (b >= R_NULL) && (b < R_NULL + 1000) )
return b;
bb=b;
-
+
sz = mbrtowc( &res, &bb, 1, &state );
-
+
switch( sz )
{
case -1:
memset (&state, '\0', sizeof (state));
- debug( 2, L"Illegal input" );
- return R_NULL;
+ debug( 2, L"Illegal input" );
+ return R_NULL;
case -2:
break;
case 0:
return 0;
default:
-
+
return res;
}
}
}
- else
+ else
{
if( !timed )
{
@@ -228,7 +228,7 @@ wchar_t input_common_readch( int timed )
if( lookahead_count == 0 )
return input_common_readch(0);
}
-
+
return lookahead_arr[--lookahead_count];
}
}