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.

15 lines
224 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. void showMenu();
  8. void ageInput();
  9. bool agePermission(int age);
  10. bool checkIfInteger(char* input);
  11. #endif