14 lines
219 B
C
14 lines
219 B
C
//
|
|
// Created by epagris on 2022.11.07..
|
|
//
|
|
|
|
#include "connection_block.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
void connb_remove(ConnBlock *connb) {
|
|
if (connb != NULL) {
|
|
packsieve_remove_layer(connb->sieveLayer);
|
|
}
|
|
}
|