-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename variables and define functions
- Loading branch information
1 parent
4b80f50
commit a39404a
Showing
3 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#ifndef BACKUP_H | ||
#define BACKUP_H | ||
|
||
void writeBackup(FILE* account, const std::string& backupPath, char* buffer); | ||
void backupAccount(); | ||
|
||
#endif // BACKUP_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#ifndef SWITCH_H | ||
#define SWITCH_H | ||
|
||
void handleCleanup(FILE* account, FILE* backup, char* buffer, bool isError); | ||
void switchAccount(const char* backupFile, const char* accountType); | ||
|
||
#endif // SWITCH_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters