sba/menu.h

27 lines
518 B
C

//include std lib if they havent been included
#ifndef STD_LIB_H
#define STD_LIB_H
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<stdbool.h>
#include<math.h>
#endif
void welcome_message(){
printf("><Welcome to the Student Union POS system><\n");//welcome messgae
}
int user_choices(){
int choice;
printf("Are you an admin or a normal user?\n");
printf("1. Admin\n");
printf("2. Normal User\n");
printf("3. Exit\n");
scanf("%d", &choice);
return choice;
}