summaryrefslogtreecommitdiff
path: root/tools/sourceclean.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sourceclean.c')
-rw-r--r--tools/sourceclean.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/sourceclean.c b/tools/sourceclean.c
deleted file mode 100644
index 8fb02c4..0000000
--- a/tools/sourceclean.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv) {
- unsigned char c;
- while (fread(&c, sizeof(c), 1, stdin)) {
- if (c < 128) {
- printf("%c", c);
- } else {
- printf("\\x%2X", c);
- }
- }
-}