mxe/src/libspectre-test.c

23 lines
412 B
C
Raw Normal View History

2016-07-21 13:50:07 +01:00
/*
* This file is part of MXE. See LICENSE.md for licensing information.
2016-07-21 13:50:07 +01:00
*/
#include <libspectre/spectre.h>
int main(int argc, char *argv[])
{
2017-10-10 06:22:37 +01:00
SpectreDocument *document;
SpectreRenderContext *rc;
2016-07-21 13:50:07 +01:00
2017-10-10 06:22:37 +01:00
(void)argc;
(void)argv;
2016-07-21 13:50:07 +01:00
2017-10-10 06:22:37 +01:00
document = spectre_document_new();
rc = spectre_render_context_new();
2016-07-21 13:50:07 +01:00
2017-10-10 06:22:37 +01:00
spectre_document_free(document);
spectre_render_context_free(rc);
2016-07-21 13:50:07 +01:00
2017-10-10 06:22:37 +01:00
return 0;
2016-07-21 13:50:07 +01:00
}