view src/libidn-test.c @ 3220:0d3feaef089f

Setup set_mxe_env.sh paths for native/non native builds dependant on config variables. * tools/set_mxe_env.sh.in: use MXE_NATIVE_BUILD config variable to set HOST for environment path.
author John Donoghue <john.donoghue@ieee.org>
date Wed, 07 Aug 2013 19:18:23 -0400
parents 99516e73b368
children
line wrap: on
line source

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