Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      mbstate_t

      From cppreference.com
      <c‎ |string‎ |multibyte
       
       
       
       
      Defined in header<uchar.h>
      (since C11)
      Defined in header<wchar.h>
      struct mbstate_t;
      (since C95)

      The typembstate_t is a trivial non-array type that can represent any of the conversion states that can occur in an implementation-defined set of supported multibyte character encoding rules. Zero-initialized value ofmbstate_t represents the initial conversion state, although other values ofmbstate_t may exist that also represent the initial conversion state.

      Possible implementation ofmbstate_t is a struct type holding an array representing the incomplete multibyte character, an integer counter indicating the number of bytes in the array that have been processed, and a representation of the current shift state.

      The following functions should not be called from multiple threads without synchronization with thembstate_t* argument of a null pointer due to possible data races:mbrlen,mbrtowc,mbsrtowcs,mbtowc,wcrtomb,wcsrtombs,wctomb.

      [edit]References

      • C11 standard (ISO/IEC 9899:2011):
      • 7.29.1/2 Introduction (p: 402)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.24.1/2 Introduction (p: 348)

      [edit]See also

      (C95)
      checks if the mbstate_t object represents initial shift state
      (function)[edit]
      C++ documentation formbstate_t
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/string/multibyte/mbstate_t&oldid=119771"

      [8]ページ先頭

      ©2009-2025 Movatter.jp