Warning, file /include/utf8_validity.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007 #ifndef THIRD_PARTY_UTF8_RANGE_UTF8_VALIDITY_H_
0008 #define THIRD_PARTY_UTF8_RANGE_UTF8_VALIDITY_H_
0009
0010 #include <cstddef>
0011
0012 #include "absl/strings/string_view.h"
0013
0014 namespace utf8_range {
0015
0016
0017 bool IsStructurallyValid(absl::string_view str);
0018
0019
0020
0021 size_t SpanStructurallyValid(absl::string_view str);
0022
0023 }
0024
0025 #endif