summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/.gitignore1
-rw-r--r--bin/Makefile1
-rw-r--r--bin/README.74
-rw-r--r--bin/aes.c57
-rw-r--r--bin/man1/aes.118
5 files changed, 1 insertions, 80 deletions
diff --git a/bin/.gitignore b/bin/.gitignore
index 96bd6068..cf808c77 100644
--- a/bin/.gitignore
+++ b/bin/.gitignore
@@ -1,6 +1,5 @@
 *.html
 *.o
-aes
 beef
 bit
 bri
diff --git a/bin/Makefile b/bin/Makefile
index d9cce459..09ec952e 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -18,7 +18,6 @@ LDLIBS.title = -lcurl
 
 -include config.mk
 
-BINS += aes
 BINS += beef
 BINS += bit
 BINS += c
diff --git a/bin/README.7 b/bin/README.7
index caf5ac7d..16d86c67 100644
--- a/bin/README.7
+++ b/bin/README.7
@@ -1,4 +1,4 @@
-.Dd May 31, 2020
+.Dd June 17, 2020
 .Dt BIN 7
 .Os "Causal Agency"
 .
@@ -16,8 +16,6 @@ Some tools target Linux.
 .
 .Pp
 .Bl -tag -width "fbclock(1)" -compact
-.It Xr aes 1
-fullwidth output
 .It Xr beef 1
 Befunge-93 interpreter
 .It Xr bit 1
diff --git a/bin/aes.c b/bin/aes.c
deleted file mode 100644
index 705970dc..00000000
--- a/bin/aes.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <locale.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <wchar.h>
-
-typedef unsigned char byte;
-
-static const wchar_t Table[128] = {
-	L"\x00\x01\x02\x03\x04\x05\x06\x07"
-	L"\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"
-	L"\x10\x11\x12\x13\x14\x15\x16\x17"
-	L"\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"
-	L" !"#$%&'()*+,-./"
-	L"0123456789:;<=>?"
-	L"@ABCDEFGHIJKLMNO"
-	L"PQRSTUVWXYZ[\]^_"
-	L"`abcdefghijklmno"
-	L"pqrstuvwxyz{|}~\x7F"
-};
-
-static void enwiden(const char *ch) {
-	for (; *ch; ++ch) {
-		if ((byte)*ch < 128) printf("%lc", (wint_t)Table[(byte)*ch]);
-		else printf("%c", *ch);
-	}
-}
-
-int main(int argc, char *argv[]) {
-	setlocale(LC_CTYPE, "");
-	for (int i = 1; i < argc; ++i) {
-		enwiden(argv[i]);
-		if (i < argc - 1) printf("%lc", (wint_t)Table[' ']);
-		else printf("\n");
-	}
-	if (argc > 1) return EXIT_SUCCESS;
-	char *line = NULL;
-	size_t cap = 0;
-	while (0 < getline(&line, &cap, stdin)) {
-		enwiden(line);
-	}
-}
diff --git a/bin/man1/aes.1 b/bin/man1/aes.1
deleted file mode 100644
index 3e8df20b..00000000
--- a/bin/man1/aes.1
+++ /dev/null
@@ -1,18 +0,0 @@
-.Dd February 5, 2019
-.Dt AES 1
-.Os
-.
-.Sh NAME
-.Nm aes
-.Nd fullwidth output
-.
-.Sh SYNOPSIS
-.Nm
-.Op Ar text ...
-.
-.Sh DESCRIPTION
-.Nm
-converts ASCII characters
-to their fullwidth counterparts.
-If no arguments are given,
-standard input is converted.