registred all types

This commit is contained in:
2022-08-25 01:37:14 +06:00
parent 2e378d1458
commit d62405ccff
24 changed files with 201 additions and 213 deletions

View File

@@ -8,7 +8,8 @@ STNode* STNode_create(){
return node;
}
void STNode_free(STNode* node){
void __STNode_free(void* _node){
STNode* node=_node;
if (!node) throw(ERR_NULLPTR);
if(node->branches){
for(uint8 n32 = 0;n32<8;n32++){
@@ -34,6 +35,10 @@ void STNode_free(STNode* node){
Unitype_free(node->value);
free(node);
}
void STNode_free(STNode* node){
__STNode_free(node);
free(node);
}
typedef struct {uint8 n32, n4, rem;} indexes3;