blob: 825ca2f9801f181936d0582350b891ca64fc2489 [file] [log] [blame]
#include <stdio.h>
#include <locale.h>
int
main (void)
{
char buf[10];
setlocale (LC_ALL, "vi_VN.TCVN-5712");
return sprintf (buf, "%.*s", 2, "vi") != 2;
}