From e2a0cf2a79b43f9f86b74270f3d96fe300687804 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sat, 20 Jan 2024 12:31:58 -0500 Subject: Cleanup unused files and code. --- util/hexify.c | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 util/hexify.c (limited to 'util/hexify.c') 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 - -int main() { - int c; - while ((c = getchar()) != EOF) { - printf("\\x%X", c); - if ( c == '\n' ) { - puts(""); - } - } -} -- cgit v1.2.3