atm-admin/libs/AtmAdmin.h

16 lines
347 B
C
Raw Normal View History

#ifndef ATMADMIN_H
#define ATMADMIN_H
namespace AtmAdmin {
// startup() is inline because of how small it is.
char startup();
2025-06-13 09:15:55 +00:00
void handleInvalidArguments(int argc);
bool handleUserInformation(char choice, std::string& information);
std::string changeAccountPin();
std::string changeAccountName();
}
#endif //ATMADMIN_H