From 03b4252ab5ec67ea5c269682db2aa02593eb8344 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Thu, 6 Jan 2011 12:25:28 +0100 Subject: [PATCH] Link fix in case not everything is linked as one binary. --- src/util/misc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util/misc.c b/src/util/misc.c index 5b85baa..f21f7f8 100644 --- a/src/util/misc.c +++ b/src/util/misc.c @@ -1,6 +1,6 @@ /* * uhub - A tiny ADC p2p connection hub - * Copyright (C) 2007-2010, Jan Vidar Krey + * Copyright (C) 2007-2011, Jan Vidar Krey * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,6 +19,8 @@ #include "uhub.h" +static const char* BASE32_ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; + int is_space(char c) { if (c == ' ') return 1;