summaryrefslogtreecommitdiffstats
path: root/src/libspectre-test.c
blob: 79f521ef26ef8aec584531fd4e5265d9a0b852a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * This file is part of MXE.
 * See index.html for further 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;
}