Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
692 B
24 lines
692 B
2 years ago
|
// Copyright 2022 Google LLC
|
||
|
//
|
||
|
// Use of this source code is governed by an MIT-style
|
||
|
// license that can be found in the LICENSE file or at
|
||
|
// https://opensource.org/licenses/MIT.
|
||
|
|
||
|
#ifndef THIRD_PARTY_UTF8_RANGE_UTF8_VALIDITY_H_
|
||
|
#define THIRD_PARTY_UTF8_RANGE_UTF8_VALIDITY_H_
|
||
|
|
||
|
#include "absl/strings/string_view.h"
|
||
|
|
||
|
namespace utf8_range {
|
||
|
|
||
|
// Returns true if the sequence of characters is a valid UTF-8 sequence.
|
||
|
bool IsStructurallyValid(absl::string_view str);
|
||
|
|
||
|
// Returns the length in bytes of the prefix of str that is all
|
||
|
// structurally valid UTF-8.
|
||
|
size_t SpanStructurallyValid(absl::string_view str);
|
||
|
|
||
|
} // namespace utf8_range
|
||
|
|
||
|
#endif // THIRD_PARTY_UTF8_RANGE_UTF8_VALIDITY_H_
|