aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 1aa9b80d..dfa4499f 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -870,18 +870,6 @@ void base64_init(char *p)
*(p++) = '/';
}
-// Init base32 table
-
-void base32_init(char *p)
-{
- int i;
-
- for (i = 'A'; i != '8'; i++) {
- if (i == 'Z'+1) i = '2';
- *(p++) = i;
- }
-}
-
int yesno(int def)
{
return fyesno(stdin, def);