summaryrefslogtreecommitdiff
path: root/bin/filter.cpp
diff options
context:
space:
mode:
authorRichard Lin2019-01-18 16:23:27 -0800
committerGitHub2019-01-18 16:23:27 -0800
commit3b3405e8bd496749dcb47e17156c0224a6f8a496 (patch)
tree4a8076509cb0a18591a7fea1e3143da3e54dd65e /bin/filter.cpp
parent9c9920eb0f53f91beddf051c8bffce1ad0116f69 (diff)
Remove bin (#991)
Diffstat (limited to 'bin/filter.cpp')
-rw-r--r--bin/filter.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/filter.cpp b/bin/filter.cpp
deleted file mode 100644
index 1da9440b..00000000
--- a/bin/filter.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-int main (int argc, char* argv[]) {
- int c;
- for (;;) {
- c = getchar();
- if (c == EOF) break;
- if (c == '#' || c == '?')
- putchar('_');
- else if (c == '$') {
- putchar(':'); putchar(':');
- } else
- putchar(c);
- }
-}