aboutsummaryrefslogtreecommitdiffhomepage
path: root/key_reader.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 /key_reader.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 'key_reader.c')
-rw-r--r--key_reader.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/key_reader.c b/key_reader.c
index e7d6611f..1cf42a1c 100644
--- a/key_reader.c
+++ b/key_reader.c
@@ -29,7 +29,7 @@ int main( int argc, char **argv)
{
setlocale( LC_ALL, "" );
-
+
if( argc == 2 )
{
@@ -37,24 +37,24 @@ int main( int argc, char **argv)
char *termtype = getenv ("TERM");
char *tbuff = malloc( sizeof(char)*9999);
char *res;
-
+
tgetent( term_buffer, termtype );
- res = tgetstr( argv[1], &tbuff );
+ res = tgetstr( argv[1], &tbuff );
if( res != 0 )
{
while( *res != 0 )
- {
+ {
printf("%d ", *res );
res++;
}
- printf( "\n" );
+ printf( "\n" );
}
else
{
printf("Undefined sequence\n");
- }
+ }
}
else
{
@@ -65,11 +65,11 @@ int main( int argc, char **argv)
savemodes; /* so we can reset the modes when we're done */
input_common_init(0);
-
+
tcgetattr(0,&modes); /* get the current terminal modes */
savemodes = modes; /* save a copy so we can reset them */
-
+
modes.c_lflag &= ~ICANON; /* turn off canonical mode */
modes.c_lflag &= ~ECHO; /* turn off echo mode */
modes.c_cc[VMIN]=1;
@@ -83,13 +83,13 @@ int main( int argc, char **argv)
sprintf( scratch, "dec: %d hex: %x char: %c\n", c, c, c );
else
sprintf( scratch, "dec: %d hex: %x\n", c, c );
- writestr( scratch );
+ writestr( scratch );
}
/* reset the terminal to the saved mode */
- tcsetattr(0,TCSANOW,&savemodes);
+ tcsetattr(0,TCSANOW,&savemodes);
input_common_destroy();
- }
+ }
return 0;
}