9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
13 lines
236 B
C
13 lines
236 B
C
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
|
|
int main() {
|
|
const wchar_t str[] = L"wcsrtombs";
|
|
const wchar_t *p = str;
|
|
int ret = wcsrtombs(NULL, &p, 343245234, NULL);
|
|
assert(ret == 9);
|
|
return 0;
|
|
}
|