Browse Source

refactoring: function for accept rules

remotes/origin/navigation
KRUGSON 2 years ago
parent
commit
48b661ef17
  1. 11
      src/c/main.c

11
src/c/main.c

@ -12,6 +12,7 @@ char *gameInstructionsFile = "../../src/content/game_instructions.txt";
// function declarations // function declarations
void printInit(); void printInit();
void acceptInstructions();
int main() int main()
{ {
@ -37,7 +38,7 @@ int main()
} }
} }
return 0; return 0;
};
}
// init dialogue // init dialogue
void printInit() void printInit()
@ -64,6 +65,12 @@ void printInit()
free(line); /* Deallocate allocated memory */ free(line); /* Deallocate allocated memory */
fclose(stream); /* closing file */ fclose(stream); /* closing file */
acceptInstructions();
}
//accept rules and instructions for init dialogue
void acceptInstructions()
{
char userInput[1]; char userInput[1];
bool inputState = 0; bool inputState = 0;
int acceptCounter = 0; int acceptCounter = 0;
@ -86,4 +93,4 @@ void printInit()
printf("Invalid Input!\n"); printf("Invalid Input!\n");
} }
} }
};
}
Loading…
Cancel
Save