-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewRecords.h
40 lines (33 loc) · 1.01 KB
/
viewRecords.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <stdlib.h>
#include <windows.h>
/***********************************
* RETURN TO MAIN SCREEN *
************************************/
void start();
/***********************************
* MAIN SCREEN FOR VIEWING RECORDS *
************************************/
void viewRecords();
/***********************************
* MATCHES PLAYED BETWEEN THE TEAMS *
************************************/
int printList(char *, char *, int *);
/***********************************
* IF NO MATCH HAS BEEN PLAYED *
************************************/
void noMatch();
/***********************************
* IF MATCHES ARE PLAYED *
************************************/
void matchesFound();
/***********************************
* CORRECT CODE IS ENTERED *
************************************/
void codeFound(char *);
/***********************************
* WRONG CODE IS ENTERED *
************************************/
void noCode();