This commit is contained in:
Maksym Malko 2020-11-27 10:35:14 +01:00
parent 48ac369a2d
commit 075524f7bc

View File

@ -66,7 +66,13 @@ int get_input(char *string){
void system_execute(struct tree* root){
if(root==NULL){
return;
}
printf("%s\n",root->question);
if(root->question[0]=='*'){
return;
}
char *resp = calloc(SIZE,sizeof(char));
int flag = get_input(resp);