diff options
author | Geenz <geenz@geenzo.com> | 2013-06-17 04:39:47 -0400 |
---|---|---|
committer | Geenz <geenz@geenzo.com> | 2013-06-17 04:39:47 -0400 |
commit | 0af636e63270047a61ced51b7f3b22f45003120a (patch) | |
tree | eefb829c8d2afb0489eccc456db8e134718bf145 /indra/llcommon/llstring.cpp | |
parent | 7decac40e6453b2d8822d2677b9b59300bc260cf (diff) | |
parent | dcfb18373eca7986a73d8b9a1d34970cc0a23ed9 (diff) |
Merged with viewer-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')) |