summaryrefslogtreecommitdiff
path: root/src/core/state.c
blob: 91bd9e4a8e59a46599c4ea777c4b67a69331f5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "state.h"

SandState sand_create_state(SandConfig config) {
	return (SandState) {
		.config = config,
	};
}

void sand_destroy_state(SandState *S) {
	(void) S;
}