| 74 | size_t Utf8Encode(char32_t code_point, char* absl_nonnull buffer); |
| 75 | ABSL_DEPRECATED("Use other overload") |
| 76 | inline size_t Utf8Encode(std::string& buffer, char32_t code_point) { |
| 77 | return Utf8Encode(code_point, &buffer); |
| 78 | } |
| 79 | |
| 80 | } // namespace cel::internal |
| 81 |
no outgoing calls