f36e2104d8
sep-tests / ragflow_preflight (push) Waiting to run
sep-tests / ragflow_tests_infinity (push) Blocked by required conditions
sep-tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
tests / ragflow_preflight (push) Waiting to run
tests / ragflow_tests_infinity (push) Blocked by required conditions
tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
22 lines
486 B
C++
22 lines
486 B
C++
// Copyright 2016 The RE2 Authors. All Rights Reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#ifndef UTIL_STRUTIL_H_
|
|
#define UTIL_STRUTIL_H_
|
|
|
|
#include <string>
|
|
|
|
#include "re2/stringpiece.h"
|
|
#include "util/util.h"
|
|
|
|
namespace re2 {
|
|
|
|
std::string CEscape(const StringPiece &src);
|
|
void PrefixSuccessor(std::string *prefix);
|
|
std::string StringPrintf(const char *format, ...);
|
|
|
|
} // namespace re2
|
|
|
|
#endif // UTIL_STRUTIL_H_
|