Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bwave.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef BWAVE_H
#define BWAVE_H

//akash added this to test automatic trigger in PROD test smart sync
#include <stdio.h>
#include <string.h>
#include <time.h>
Expand Down
2 changes: 1 addition & 1 deletion checkBalance.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* checkBalance - checks current balance
* Return: Nothing
*/

//akash added
void checkBalance(double balance)
{
printf("Your current balance is: %.2f \n", balance);
Expand Down
1 change: 1 addition & 0 deletions createAccount.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* createAccount - creates account of user
* Return: void
*/
//comment added by akash for automatic smart sync
void createAccount()
{
char fullName[MAX_LENGTH];
Expand Down
2 changes: 2 additions & 0 deletions transferMoney.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* @lastTransferAmount: last Transfer Amount.
* Return: void
*/

//akash comment
void transferMoney(double* balance, double* lastTransferAmount)
{
char accountName[MAX_LENGTH], accountNumber[MIN_LENGTH], bank[MAX_LENGTH];
Expand Down