From 64c85dfc1d3b546dd4b5f84168e9256817f3a741 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Thu, 20 Feb 2014 02:46:41 +0100 Subject: clean up source directory --- src/hexout.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/hexout.c (limited to 'src/hexout.c') diff --git a/src/hexout.c b/src/hexout.c deleted file mode 100644 index 1af6805..0000000 --- a/src/hexout.c +++ /dev/null @@ -1,13 +0,0 @@ -#include - -int main() { - char tbl[] = "0123456789ABCDEF"; - int in; - - while( ( in = getchar() ) != EOF ) { - putchar( tbl[in>>4]); - putchar( tbl[in&15]); - putchar( '\n' ); - } - return 0; -} -- cgit v1.2.3