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
15 lines
224 B
#ifndef MAINMENU_H_
|
|
#define MAINMENU_H_
|
|
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<stdbool.h>
|
|
#include<string.h>
|
|
|
|
void showMenu();
|
|
void ageInput();
|
|
|
|
bool agePermission(int age);
|
|
bool checkIfInteger(char* input);
|
|
|
|
#endif
|