summaryrefslogtreecommitdiff
path: root/indra/llcommon/u64.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/llcommon/u64.h
Print done when done.
Diffstat (limited to 'indra/llcommon/u64.h')
-rw-r--r--indra/llcommon/u64.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/indra/llcommon/u64.h b/indra/llcommon/u64.h
new file mode 100644
index 0000000000..e659be189f
--- /dev/null
+++ b/indra/llcommon/u64.h
@@ -0,0 +1,19 @@
+/**
+ * @file u64.h
+ * @brief Utilities to deal with U64s.
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_U64_H
+#define LL_U64_H
+
+U64 str_to_U64(const char* str);
+char* U64_to_str(U64 value, char* result, S32 result_size);
+
+F64 U64_to_F64(const U64 value);
+
+U64 llstrtou64(const char* str, char** end, S32 base);
+
+#endif