diff --git a/modules/cjeopardy/cjeopardy.txt b/modules/cjeopardy/cjeopardy.txt index c9ebe591..12f91de4 100644 --- a/modules/cjeopardy/cjeopardy.txt +++ b/modules/cjeopardy/cjeopardy.txt @@ -1192,7 +1192,7 @@ 1192) [7.29.6.1.2 The wctob function] This function determines whether c corresponds to a member of the extended character set whose multibyte character representation is a single byte when in the initial shift state.|wctob 1193) [7.29.6.2.1 The mbsinit function] If the argument is not a null pointer, this function determines whether the referenced mbstate_t object describes an initial conversion state.|mbsinit 1194) [7.29.6.3.1 The mbrlen function] This function is equivalent to the call: mbrtowc(NULL, s, n, ps != NULL ? ps : &internal) where internal is the mbstate_t object for the mbrlen function, except that the expression designated by ps is evaluated only once.|mbrlen -1195) [7.29.6.3.2 The mbrtowc function] This function returns the first of the following that applies (given the current conversion state): 0 if the next n or fewer bytes complete the multibyte character that corresponds to the null wide character (which is the value stored).|mbrtowc +1195) [7.29.6.3.2 The mbrtowc function] This function inspects at most n bytes of the multibyte string starting at s, extracts the next complete multibyte character, converts it to a wide character, stores it at *pwc and updates the shift state *ps.|mbrtowc 1196) [7.29.6.3.3 The wcrtomb function] This function converts the wide character wc to its multibyte representation (including any shift sequences).|wcrtomb 1197) [7.29.6.4.1 The mbsrtowcs function] This function converts a sequence of multibyte characters that begins in the conversion state described by the object pointed to by ps, from the array indirectly pointed to by src into a sequence of corresponding wide characters.|mbsrtowcs 1198) [7.29.6.4.2 The wcsrtombs function] This function converts a sequence of wide characters from the array indirectly pointed to by src into a sequence of corresponding multibyte characters that begins in the conversion state described by the object pointed to by ps.|wcsrtombs