You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libidn-test.c

21 lines
374 B

/* This file is part of mingw-cross-env. */
/* See doc/index.html for further information. */
#include <stdlib.h>
#include <idna.h>
int main(int argc, char *argv[])
{
char *hostname_ascii;
(void)argc;
(void)argv;
if (idna_to_ascii_lz("www.google.com", &hostname_ascii, 0) == IDNA_SUCCESS)
{
free(hostname_ascii);
}
return 0;
}