add flag handling and header guards

This commit is contained in:
2025-03-06 14:12:10 +01:00
parent 0d11dbec32
commit 98b6b8df7e
13 changed files with 119 additions and 26 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <string>
// header guard
#ifndef _ba_fl_hg_
#define _ba_fl_hg_
void PrintHelp();
void PrintVersion();
void DeleteLogin(std::string savedir_path);
#endif