diff options
author | Oz Linden <oz@lindenlab.com> | 2013-05-22 11:09:43 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-05-22 11:09:43 -0400 |
commit | 5758b9e304c182db93aa642358140d9464331208 (patch) | |
tree | 0ad969a04f97242253ac1af5ed6e98eb992fea8d /indra/llcommon/llstring.cpp | |
parent | 9ef64494559dce5f7c0afb271b591036054f01ce (diff) | |
parent | 7fad053982d835ff5b9ec496bc94ddbedc234dcc (diff) |
merge changes for 3.5.3-release
Diffstat (limited to 'indra/llcommon/llstring.cpp')
-rwxr-xr-x | indra/llcommon/llstring.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index 0c32679744..22c8681983 100755 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -52,6 +52,23 @@ std::string ll_safe_string(const char* in, S32 maxlen) return std::string(); } +bool is_char_hex(char hex) +{ + if((hex >= '0') && (hex <= '9')) + { + return true; + } + else if((hex >= 'a') && (hex <='f')) + { + return true; + } + else if((hex >= 'A') && (hex <='F')) + { + return true; + } + return false; // uh - oh, not hex any more... +} + U8 hex_as_nybble(char hex) { if((hex >= '0') && (hex <= '9')) |