diff options
Diffstat (limited to 'src/lib/utils/charset.h')
-rw-r--r-- | src/lib/utils/charset.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/lib/utils/charset.h b/src/lib/utils/charset.h index b14b1ad41..8012472e5 100644 --- a/src/lib/utils/charset.h +++ b/src/lib/utils/charset.h @@ -1,5 +1,5 @@ /* -* Character Set Handling +* Character Set Conversions * (C) 1999-2007 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) @@ -35,20 +35,6 @@ BOTAN_TEST_API std::string ucs4_to_utf8(const uint8_t ucs4[], size_t len); */ BOTAN_TEST_API std::string latin1_to_utf8(const std::string& iso8859); -namespace Charset { - -/* -* Simple character classifier functions -*/ -bool is_digit(char c); -bool is_space(char c); -bool caseless_cmp(char x, char y); - -uint8_t char2digit(char c); -char digit2char(uint8_t b); - -} - } #endif |