summaryrefslogtreecommitdiff
path: root/src/sf.skel/state.c
blob: 3a1d297a70c73800d96696655857fd5d7f85400e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "state.h"

// FREE

void
Free_configuration(configuration *E)
{
	UNUSED(E);
}

void
Free_data(data *E)
{
	UNUSED(E);
}

// PARSE

char *
Parse_configuration(configuration *E, ucl_object_t const *root, char const *Position)
{
	char *Error;
	UCL_CHECK_ROOT(OBJECT);
	UNUSED(E);
	return NULL;
error:
	return Error;
}

char *
Parse_data(data *E, ucl_object_t const *root, char const *Position)
{
	char *Error;
	UCL_CHECK_ROOT(OBJECT);
	UNUSED(E);
	return NULL;
error:
	return Error;
}

// SAVE

void
Save_data(jprint_state *S, data const *E)
{
	JPrintObjectBegin(S);
	UNUSED(E);
	JPrintObjectEnd(S);
}