diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-25 22:25:05 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-16 22:46:38 +0000 |
commit | 09ce03d612e54231694eee2fb9e5c807b2bfc341 (patch) | |
tree | f90f634f25079749febf00618ac3160d204f2d7a /contrib/epee/src/string_tools.cpp | |
parent | Merge pull request #2881 (diff) | |
download | monero-09ce03d612e54231694eee2fb9e5c807b2bfc341.tar.xz |
move includes around to lessen overall load
Diffstat (limited to '')
-rw-r--r-- | contrib/epee/src/string_tools.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/epee/src/string_tools.cpp b/contrib/epee/src/string_tools.cpp index d04b16b75..fd0254016 100644 --- a/contrib/epee/src/string_tools.cpp +++ b/contrib/epee/src/string_tools.cpp @@ -26,6 +26,8 @@ #include "string_tools.h" +#include <ctype.h> + #ifdef _WIN32 # include <winsock2.h> #else @@ -56,6 +58,16 @@ namespace string_tools return true; } + //---------------------------------------------------------------------------- + bool validate_hex(uint64_t length, const std::string& str) + { + if (str.size() != length) + return false; + for (char c: str) + if (!isxdigit(c)) + return false; + return true; + } } } |