aboutsummaryrefslogtreecommitdiff
path: root/src/blocks/group.c
blob: fb4457e8e243171e5ba70c6c9376c752b40cdf14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "scheme.h"

const block_scheme_t block_group_scheme = {
    .name = "group",
    .block = {
        .type = BLOCK_GROUP,
    },
    .size = 0,
    .entries = NULL,
    .verify = NULL,
};