aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/u64.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llcommon/u64.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/u64.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/linden/indra/llcommon/u64.h b/linden/indra/llcommon/u64.h
index ab06836..3d45fc3 100644
--- a/linden/indra/llcommon/u64.h
+++ b/linden/indra/llcommon/u64.h
@@ -38,7 +38,14 @@
38 * @param str The string to parse. 38 * @param str The string to parse.
39 * @return Returns the first U64 value found in the string or 0 on failure. 39 * @return Returns the first U64 value found in the string or 0 on failure.
40 */ 40 */
41U64 str_to_U64(const char* str); 41U64 str_to_U64(const std::string& str);
42
43/**
44 * @brief Given a U64 value, return a printable representation.
45 * @param value The U64 to turn into a printable character array.
46 * @return Returns the result string.
47 */
48std::string U64_to_str(U64 value);
42 49
43/** 50/**
44 * @brief Given a U64 value, return a printable representation. 51 * @brief Given a U64 value, return a printable representation.