14 lines
310 B
C
14 lines
310 B
C
|
#include "custom.h"
|
||
|
|
||
|
void libab_behavior_free(libab_behavior* behavior) {
|
||
|
libab_parsetype_free_recursive(behavior->type);
|
||
|
}
|
||
|
|
||
|
void libab_operator_free(libab_operator* op) {
|
||
|
libab_behavior_free(&op->behavior);
|
||
|
}
|
||
|
|
||
|
void libab_function_free(libab_function* fun) {
|
||
|
libab_behavior_free(&fun->behavior);
|
||
|
}
|