diff options
| author | austinsworld15 <[email protected]> | 2021-12-08 13:19:10 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-08 13:19:10 -0800 |
| commit | eeb6149d413ad6f2e373edbeb9f2e7d82eb88314 (patch) | |
| tree | 3b4031435b7c9da011b7bf406793a57fe718b648 | |
| parent | Update and rename CST116F2021-Proj3.cpp to Project 3.cpp (diff) | |
| download | archived-cst116-proj3-austinsworld15-eeb6149d413ad6f2e373edbeb9f2e7d82eb88314.tar.xz archived-cst116-proj3-austinsworld15-eeb6149d413ad6f2e373edbeb9f2e7d82eb88314.zip | |
Create Project_3_Voids.h
| -rw-r--r-- | CST116F2021-Proj3/Project_3_Voids.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CST116F2021-Proj3/Project_3_Voids.h b/CST116F2021-Proj3/Project_3_Voids.h new file mode 100644 index 0000000..c7d4653 --- /dev/null +++ b/CST116F2021-Proj3/Project_3_Voids.h @@ -0,0 +1,5 @@ +#pragma once + +void ProcessChoice(int& choice); +int AddMatrix(int& rowa1, int& columna1, int& rowa2, int& columna2, int& ia, int& ja, int& ka); +int MultiplyMatrix(int& row1, int& column1, int& row2, int& column2, int& i, int& j, int& k); |