/* * PROJECT: ReactOS api tests * LICENSE: GPL - See COPYING in the top level directory * PURPOSE: Test for mbstowcs */ #include #define WIN32_NO_STATUS #include #include #include #define StrROS "ReactOS" START_TEST(mbstowcs) { size_t len; len = mbstowcs(NULL, StrROS, sizeof(StrROS) / sizeof(StrROS[0])); ok(len == 7, "Got len = %u, excepting 7\n", len); len = mbstowcs(NULL, StrROS, sizeof(StrROS) / sizeof(StrROS[0]) - 1); ok(len == 7, "Got len = %u, excepting 7\n", len); }