18 #include "../Shared/funcannotations.h"
20 #ifdef EXECUTE_INCLUDE
23 char_length_encoded(
const char* str,
const int32_t str_len) {
24 int32_t i = 0, char_count = 0;
26 const unsigned char ch_masked = str[i] & 0xc0;
27 if (ch_masked != 0x80) {
36 char_length_encoded_nullable(
const char* str,
37 const int32_t str_len,
38 const int32_t int_null) {
42 return char_length_encoded(str, str_len);
45 #endif // EXECUTE_INCLUDE