bson_iter_utf8 (3) Linux Manual Page
NAME bson_iter_utf8() – The bson_iter_utf8() function shall retrieve the contents of a BSON_TYPE_UTF8 element currently observed by iter. SYNOPSIS #define BSON_ITER_HOLDS_UTF8(iter) \ (bson_iter_type((iter)) == BSON_TYPE_UTF8) const char * bson_iter_utf8(const bson_iter_t *iter, uint32_t *length); PARAMETERS iter A bson_iter_t \&. length An optional location for the length of the resulting UTF-8 encoded string. DESCRIPTION The bson_iter_utf8(3) function…
