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.

62 lines
1.6 KiB

#ifndef QUIZPROJECT_H
#define QUIZPROJECT_H
void play_quizgame(void);
void play_factorlie(void);
void play_milliongame(void);
void play_guessingGame(void);
void play_guessTheWord(void);
void displayWelcomeMessage(void);
void displayGameInstructions(void);
void displayLifelineInstructions(void);
void displayInstructions(void);
void displayGoodLuckMessage(void);
void ask_questions(void);
void ask_hard_questions(void);
void fifty_fifty(int);
void hint(int);
void correct(int);
void wrong(int);
int score = 0;
void printOutOption(char [][100], char [][100],char [], int, int, int[] );
void looping(char [][100], char [][100], char [], int []);
void displayThankYouMessage(void);
int* randomNumber();
void hintForHardQuestions(int);
void feedbackForm(void);
void displayCredits(void);
void v_factorlie(void);
void v_guessingGame(void);
void v_guessTheWord(char word[], char guessed[]);
//----smart_brain_header_begin-----
void e_press_key_start(void);
void e_display_instruction(void);
void e_t_f_printQuestions(char [][100],char []);
void e_ask_questions(void);
void e_smart_brain(void);
bool e_true_false(char);
void e_usr_answr(char [][100], char [], int, int);
void e_questions_r3(void);
void e_printout_r3 (char [][100], char [][100]);
int track_r2_score = 0;
//----smart_brain_header_end-------
//Epic Game Headers
void B_displayWelcomeMessage(void);
void B_username(void);
void b_entertostart(void);
int toupper(int _c);
void B_sayhello(char name[]);
void B_userinfo(void);
void B_displayGameInstructions(void);
void B_show_time(void);
#define NUM_QUESTIONS 5
#define round 3
#define MAX_LIVES 10
#define MAX_WORD_LENGTH 20
#endif