aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
blob: 1ffe1486d384a17a0dea285b7c588cc74d4af98a (plain) (blame)
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
#include <stdbool.h>
#include <stdio.h>

#include <cjson/cJSON.h>

#define print_err(fmt, ...)                                                    \
	fprintf(stderr, "[%s:%d] " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__)

#define CIRCLEQ_FOREACH_FREE(cur, next, head, field, func_free)                \
	for ((cur) = ((head)->cqh_first); (cur) != (const void *)(head);) {    \
		(next) = ((cur)->field.cqe_next);                              \
		func_free((cur));                                              \
		(cur) = (next);                                                \
	}

typedef enum {
	VPOPEN_STDERR,
	VPOPEN_STDOUT
} vpopen_t;

int vpopen(FILE **stream, const char *file, char *const argv[], vpopen_t type);

int json_streaming_read(FILE *stream, cJSON **json);
int atob(const char *s);
int run(const char *file, char *argv[]);