aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/u64.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/u64.h')
-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.