You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libspectre-test.c

23 lines
412 B

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <libspectre/spectre.h>
int main(int argc, char *argv[])
{
SpectreDocument *document;
SpectreRenderContext *rc;
(void)argc;
(void)argv;
document = spectre_document_new();
rc = spectre_render_context_new();
spectre_document_free(document);
spectre_render_context_free(rc);
return 0;
}