view src/libass-test.c @ 5934:001129ddf0a0

Notepad++: Update to version 8.1.9. * src/npp.mk: Version 8.1.8 was retracted upstream and the corresponding binaries have been removed from the server. Update version and checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 27 Oct 2021 10:04:38 +0200
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;
}