logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

typedef uint32_t bson_unichar_t;

Author

       MongoDB, Inc

Description

bson_unichar_t  provides an abstraction on a single unicode character. It is the 32-bit representation of
       a character. As UTF-8 can contain multi-byte characters, this should be used when iterating through UTF-8
       text.

Example

          static void
          print_each_char (const char *str)
          {
             bson_unichar_t c;

             for (; *str; str = bson_utf8_next_char (str)) {
                c = bson_utf8_get_char (str);
                printf ("The numberic value is %u.\n", (unsigned) c);
             }
          }

Synopsis

          typedef uint32_t bson_unichar_t;

See Also