blob: 8bd8acebda1a90017fcb64f2192eb27fdf9a8934 (
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
|
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#ifndef BLOC_SPEC_H
#define BLOC_SPEC_H
#define BLOC_IDENTIFIER "BLoC"
#define BLOC_IDENTIFIER_LENGTH 4
struct bloc_header {
char identifier[BLOC_IDENTIFIER_LENGTH];
short length;
void *data;
} __attribute__((packed));
struct bloc_entry {
void *expression;
} __attribute__((packed));
struct bloc_structure {
void *expression;
} __attribute__((packed));
#endif
|