1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> // SPDX-License-Identifier: MIT #ifndef BLOC_FREE_H #define BLOC_FREE_H #include <parse.h> #include <term.h> void free_term(struct term *term); void free_bloc(struct bloc_parsed *bloc); #endif