You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
347 B

  1. #include "functions.h"
  2. int resetInput(char* input)
  3. {
  4. memset(&input[0], 0, sizeof(input));
  5. return 0;
  6. }
  7. int printEndMsg(int score, int questCount)
  8. {
  9. printf("Sie haben %d von %d Fragen richtig beantwortet.\n", score, questCount);
  10. return 0;
  11. }
  12. int compareStrings(const char* input, const char* buf)
  13. {
  14. return strcmp(input, buf);
  15. }