This commit is contained in:
Matej Hajduk 2025-11-12 10:29:12 +01:00
parent e928e3d459
commit 015e05a0c7

View File

@ -18,12 +18,12 @@ void trim(char *str){
Tree* read_tree() { Tree* read_tree() {
char buffer[256]; char buffer[256];
if(fgets(buffer,256,stdin))return NULL; if(!fgets(buffer,256,stdin))return NULL;
if(strcmp(buffer, "\n") == 0 ) return NULL; if(strcmp(buffer, "\n") == 0 ) return NULL;
trim(buffer); trim(buffer);
Tree* node = calloc(1, sizeof(node)); Tree* node = calloc(1, sizeof(Tree));
strcpy(node->value, buffer); strcpy(node->value, buffer);
if(buffer[0] == '*'){ if(buffer[0] == '*'){