aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab6/Header.h
diff options
context:
space:
mode:
Diffstat (limited to 'CST116F2021-Lab6/Header.h')
-rw-r--r--CST116F2021-Lab6/Header.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/CST116F2021-Lab6/Header.h b/CST116F2021-Lab6/Header.h
index 224d2e4..2e6fa13 100644
--- a/CST116F2021-Lab6/Header.h
+++ b/CST116F2021-Lab6/Header.h
@@ -2,12 +2,26 @@
#include <iostream>
#include <string>
+#include <cstring>
using namespace std;
+//11a
+//10.10 Learn by Doing Exercises
//function getInput prototype
void getInput(string studentClub, string presidentName, int numberOfStudents, string strClubIndex[10][2], int intClubIndex[], int& repeats);
//function calculateMoney prototype
void calculateMoney(int intClubIndex[], int intClubMoneyIndex[], int repeats);
//function displayTable prototype
-void displayTable(string strClubIndex[10][2], int intClubIndex[], int intClubMoneyIndex[], int repeats); \ No newline at end of file
+void displayTable(string strClubIndex[10][2], int intClubIndex[], int intClubMoneyIndex[], int repeats);
+
+//11c
+//10.15 Programming Exercises
+//function getStartup prototype
+char getStartup(char userString[]);
+//funtion isPalindrome prototype
+int isPalindrome(char userString[]);
+//function isAlphaStr prototype
+int isAlphaStr(char userString[]);
+//function countChar prototype
+int countChar(char userString[], char& stringCheck); \ No newline at end of file