sba/normal_user.h
2022-08-27 11:39:59 +08:00

20 lines
273 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>
#endif
#ifndef MENU_H
#define MENU_H
#include "menu.h"
#endif //MENU_H
bool normal_menu(){
retrurn true
}