You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
357 B
22 lines
357 B
#ifndef MAINMENU_H_
|
|
#define MAINMENU_H_
|
|
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<stdbool.h>
|
|
#include<string.h>
|
|
#include "loginCustomer.h"
|
|
|
|
#define credentialLength 20
|
|
|
|
bool agePermission(int age);
|
|
bool checkIfInteger(char* userInput);
|
|
bool chooseOption(int choiceInput);
|
|
|
|
void ageInput();
|
|
void menuInput();
|
|
void showMenu();
|
|
void menuInput();
|
|
|
|
#endif
|
|
|