aboutsummaryrefslogtreecommitdiff
path: root/util/hexify.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/hexify.c')
-rw-r--r--util/hexify.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/util/hexify.c b/util/hexify.c
deleted file mode 100644
index 3aec576..0000000
--- a/util/hexify.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-int main() {
- int c;
- while ((c = getchar()) != EOF) {
- printf("\\x%X", c);
- if ( c == '\n' ) {
- puts("");
- }
- }
-}