1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include "common.h" #define _GNU_SOURCE #include <wchar.h> int main(int argc, char** argv) { wchar_t dest[3]; const char* src = "abcdefghijklmnopq"; mbstate_t ps; CHK_FAIL_START mbsrtowcs(dest, &src, 12, &ps); CHK_FAIL_END return ret; }