view src/libidn-test.c @ 5864:166aff1564ee

build-scons.mk: Update to version 4.1.0.post1. * src/build-scons.mk: Update version, checksum, subdirectory name, and download url.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 21 Aug 2021 20:49:11 +0200
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;
}