view src/libidn-test.c @ 4356:2dbbba3cfa86

of-dicom: update to 0.2.0 * src/of-dicom.mk: update version, checksum, if non navtive, set CMAKE_BINARY and pass to build * of-dicom-1-fixes.patch: removed * of-dicom-2-gdcm2.4.patch: removed * dist-files.mk: removed unused patches
author John D
date Thu, 23 Feb 2017 14:08:41 -0500
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;
}