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.

70 lines
1.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. #ifndef QUIZPROJECT_H
  2. #define QUIZPROJECT_H
  3. void play_quizgame(void);
  4. void play_factorlie(void);
  5. void play_milliongame(void);
  6. void play_guessingGame(void);
  7. void play_guessTheWord(void);
  8. void displayWelcomeMessage(void);
  9. void displayGameInstructions(void);
  10. void displayLifelineInstructions(void);
  11. void displayInstructions(void);
  12. void displayGoodLuckMessage(void);
  13. void ask_questions(void);
  14. void ask_hard_questions(void);
  15. void fifty_fifty(int);
  16. void hint(int);
  17. void correct(int);
  18. void wrong(int);
  19. int score = 0;
  20. void printOutOption(char [][100], char [][100],char [], int, int, int[] );
  21. void looping(char [][100], char [][100], char [], int []);
  22. void displayThankYouMessage(void);
  23. int* randomNumber();
  24. void hintForHardQuestions(int);
  25. void feedbackForm(void);
  26. void displayCredits(void);
  27. void v_factorlie(void);
  28. void v_guessingGame(void);
  29. void v_guessTheWord(char word[], char guessed[]);
  30. //----smart_brain_header_begin-----
  31. void e_press_key_start(void);
  32. void e_display_instruction(void);
  33. void e_t_f_printQuestions(char [][100],char []);
  34. void e_ask_questions(void);
  35. void e_smart_brain(void);
  36. bool e_true_false(char);
  37. void e_usr_answr(char [][100], char [], int, int);
  38. void e_questions_r3(void);
  39. void e_printout_r3 (char [][100], char [][100]);
  40. int track_r2_score = 0;
  41. //----smart_brain_header_end-------
  42. //Epic Game Headers
  43. void B_displayWelcomeMessage(void);
  44. void B_username(void);
  45. void b_entertostart(void);
  46. int toupper(int _c);
  47. void B_sayhello(char name[]);
  48. void B_userinfo(void);
  49. void B_displayGameInstructions(void);
  50. void B_show_time(void);
  51. int B_testround(void);
  52. int B_round1(void);
  53. int B_round2(void);
  54. int B_round3(void);
  55. int B_round4(void);
  56. int B_round5(void);
  57. int B_round6(void);
  58. int B_round7(void);
  59. #define NUM_QUESTIONS 5
  60. #define round 15
  61. #define MAX_LIVES 10
  62. #define MAX_WORD_LENGTH 20
  63. #endif