blob: 8eba970e548d3cd8c6bac54f68ab9fe69ee752fb (
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);
void free_bloc(struct bloc_parsed *bloc);
#endif
|