aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
blob: 2071f65b32de22547640b1e38c375688bc5eb70a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef BLOC_PARSE_H
#define BLOC_PARSE_H

#include <stddef.h>

#include <term.h>
#include <spec.h>

struct bloc_parsed {
	size_t length;
	struct term **entries;
};

struct term *parse_blc(const char *term);
struct bloc_parsed *parse_bloc(const void *bloc);
struct term *from_bloc(struct bloc_parsed *bloc);

#endif