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

  1. #ifndef MAINMENU_H_
  2. #define MAINMENU_H_
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. #include<stdbool.h>
  6. #include<string.h>
  7. #include "loginCustomer.h"
  8. #define credentialLength 20
  9. bool agePermission(int age);
  10. bool checkIfInteger(char* userInput);
  11. bool chooseOption(int choiceInput);
  12. void ageInput();
  13. void menuInput();
  14. void showMenu();
  15. void menuInput();
  16. #endif