mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
20 lines
500 B
C++
20 lines
500 B
C++
// Copyright 2010 Google Inc. All Rights Reserved.
|
|
// Use of this source code is governed by an Apache-style license that can be
|
|
// found in the COPYING 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 BytesToString(const unsigned char* data,
|
|
int data_len,
|
|
std::string* string);
|
|
|
|
}; // namespace
|
|
|
|
#endif // RLZ_LIB_STRING_UTILS_H_
|