summaryrefslogtreecommitdiffstats
path: root/rlz/lib/string_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'rlz/lib/string_utils.h')
-rw-r--r--rlz/lib/string_utils.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/rlz/lib/string_utils.h b/rlz/lib/string_utils.h
new file mode 100644
index 0000000..6f64e58
--- /dev/null
+++ b/rlz/lib/string_utils.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+// String manipulation functions used in the RLZ library.
+
+#ifndef RLZ_LIB_STRING_UTILS_H_
+#define RLZ_LIB_STRING_UTILS_H_
+
+#include <string>
+
+namespace rlz_lib {
+
+bool IsAscii(char letter);
+
+bool BytesToString(const unsigned char* data,
+ int data_len,
+ std::string* string);
+
+bool GetHexValue(char letter, int* value);
+
+int HexStringToInteger(const char* text);
+
+}; // namespace
+
+#endif // RLZ_LIB_STRING_UTILS_H_