/* * This file is part of MXE. See LICENSE.md for licensing information. */#include <libdjvu/ddjvuapi.h>intmain(int argc,char*argv[]){
ddjvu_context_t *djvu_test;(void)argc;
djvu_test =ddjvu_context_create(argv[0]);ddjvu_context_release(djvu_test);return0;}