diff --git a/src/.vscode/c_cpp_properties.json b/src/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..2bf8aa4 --- /dev/null +++ b/src/.vscode/c_cpp_properties.json @@ -0,0 +1,22 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**", + "${workspaceFolder}/" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "windowsSdkVersion": "10.0.19041.0", + "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "windows-msvc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/src/depositMoney.c b/src/depositMoney.c new file mode 100644 index 0000000..618a352 --- /dev/null +++ b/src/depositMoney.c @@ -0,0 +1,13 @@ +#include + +int InitiateDepositMoney(float amountToDeposit, float availableAccountBalance){ //type of int to return possible end cases. + + + +} + +int DepositMoney(){ + + + +} \ No newline at end of file diff --git a/src/depositMoney.h b/src/depositMoney.h new file mode 100644 index 0000000..9c3e7e7 --- /dev/null +++ b/src/depositMoney.h @@ -0,0 +1,4 @@ +#include + +int InitiateDepositMoney(float amountToDeposit, float availableAccountBalance); +int DepositMoney(); \ No newline at end of file