summaryrefslogtreecommitdiffstats
path: root/src/libspectre-test.c
blob: 0e46852441d2ee5dd060ae59c5059c134cb6fcf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * 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;
}