changed some log messages

This commit is contained in:
2022-08-31 14:17:48 +06:00
parent 37e8fdcd6a
commit 982a79a052
3 changed files with 7 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ int main(){
kerepTypeDescriptors_beginInit();
kerepTypeDescriptors_initKerepTypes();
kerepTypeDescriptors_endInit();
printf("\e[92mkerep tests are starting!\e[97m\n");
printf("\e[97mkerep tests are starting!\n");
optime("test_all",1,test_all());
printf("\e[0m\n");
return 0;

View File

@@ -6,8 +6,9 @@ void printstnode(STNode* node){
IFWIN("%llu", "%lu")
"\n address: %p\n value: ",sizeof(STNode),node);
printuni(node->value);
printf("\n");
// prints pointers to all existing branches
/* printf("\n branches: %p\n", node->branches);
/* printf(" branches: %p\n", node->branches);
if(node->branches) for(uint8 i=0;i<8;i++){
printf(" \e[90m[%u]=%p\n",i,node->branches[i]);
if(node->branches[i])