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

22 lines
352 B

/*
* This file is part of MXE. See LICENSE.md for licensing 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;
}