blob: 0893a6c169bd35a6a0f29737b817e2216f3e6cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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(unsigned 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_
|