Files @ b433d016e796
Branch filter:

Location: CSY/reowolf/examples/check.c

Christopher Esterhuyse
playing around with new predicate=>state,payload storages. toward faster querying but also toward deviation detection by way of intelligible error handling
1
2
3
4
5
6
7
void check(const char* phase, int err) {
	if (err) {
		printf("ERR %d in phase `%s`. Err was `%s`\nEXITING!\n",
			err, phase, connector_error_peek());
		exit(1);
	}
}