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

Description

       Get information about the text data in M-text. The mtext_data() function returns a pointer to the text
       data of M-text mt. If fmt is not NULL, the format of the text data is stored in it. If nunits is not
       NULL, the number of units of the text data is stored in it.

       If pos_idx is not NULL and it points to a non-negative number, what it points to is a character position.
       In this case, the return value is a pointer to the text data of a character at that position.

       Otherwise, if unit_idx is not NULL, it points to a unit position. In this case, the return value is a
       pointer to the text data of a character containing that unit.

       The character position and unit position of the return value are stored in pos_idx and unit_idx
       respectively if they are not NULL.

       • If  the  format  of  the text data is MTEXT_FORMAT_US_ASCII or MTEXT_FORMAT_UTF_8, one unit is unsigned
         char.
       • If the format is MTEXT_FORMAT_UTF_16LE or MTEXT_FORMAT_UTF_16BE, one unit is unsigned short.
       • If the format is MTEXT_FORMAT_UTF_32LE or MTEXT_FORMAT_UTF_32BE, one unit is unsigned int.

Name

       mtext_data -

Synopsis

       void* mtext_data (MText * mt, enum MTextFormat * fmt, int * nunits, int * pos_idx, int * unit_idx)

See Also