-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheadefile.h
More file actions
48 lines (47 loc) · 1.19 KB
/
headefile.h
File metadata and controls
48 lines (47 loc) · 1.19 KB
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
41
42
43
44
45
46
47
48
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <stdbool.h>
#include <limits.h>
#include <string.h>
#include <math.h>
#include <windows.h>
#include <time.h>
void clearscr(void);
void LoadingPage(int match);
float fixedDepositInterest(float, float, int);
float recurringDepositInterest(float, float, int);
void fixedDepositMenu();
void recurringDepositMenu();
void SelectOptionCustomer(char);
void SelectOptionEmployee(char);
void performPendingTransaction(long);
void sendOrReceiveMoney();
void addNewAccount();
void viewAccountsBlocked();
void closeAccountRequest();
void printHeader();
void viewTransactions();
void checkAccountDetails();
int accountIsBlocked(bool);
void LoadingPage(int);
int loanApproval(bool);
bool isCibilValid(int);
int getCreditLimitagainstCibil(int);
float calculatemonthlyLoan(float, float, int);
float getLoanAmount();
void sanctionLoan();
int getTime();
void updateLoanDetails();
void loanMenu();
void checkLoansTaken();
void LoginMenu();
void PrintMenuEmployee();
void PrintMenuCustomer();
void passwordCheck(char password[21]);
void unblockAccount();
void updateAccountDetails();
void viewCustomersList();
void viewLedger();
void MainHeader();
void SetColor(int ForgC);