view src/libass-test.c @ 4548:e475dae96add

build-flex: update to v2.6.4 * src/build-flex.mk: update version, checksum and URL, depend on lzip
author John D
date Mon, 27 Nov 2017 08:52:01 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <ass/ass.h>

int main(int argc, char *argv[])
{
    ASS_Library *handle;

    (void)argc;
    (void)argv;

    handle = ass_library_init();
    ass_library_done(handle);

    return 0;
}