diff options
author | Johannes Hofmann <hofmann@flpsed.org> | 2020-11-11 20:26:38 +0100 |
---|---|---|
committer | Johannes Hofmann <hofmann@flpsed.org> | 2020-11-11 20:26:38 +0100 |
commit | 4f9182499e14290aa1eabbb5a2d903bfeb8e25d7 (patch) | |
tree | 8b2b36f9cb3d96997bd614e1bde458c5346366ef | |
parent | 9b035a109addb6ae0104d5e9a689917dd7dfbd39 (diff) |
remove tools directory
-rw-r--r-- | tools/sourceclean.c | 12 |
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); - } - } -} |