14 lines
190 B
C
14 lines
190 B
C
|
|
#include <debug.h>
|
|
|
|
#include <avl/avl.h>
|
|
|
|
#include "struct.h"
|
|
#include "is_empty.h"
|
|
|
|
bool truthtable_set_is_empty(
|
|
const struct truthtable_set* this)
|
|
{
|
|
return !this->tree->head;
|
|
}
|
|
|