22 lines
584 B
C
22 lines
584 B
C
#include "func.h"
|
|
|
|
void helpMenu(void){
|
|
clear();
|
|
printf("Command [alias] - what it does.\n\n");
|
|
printf("\thelp [h] - Show this info.\n\n");
|
|
printf("\tshow [see] - Show the 2d array\n\n");
|
|
printf("\tset [s] - Show all methods to fill the 2d array.\n");
|
|
printf("\tset* [s*] - Choose how to fill the 2d array\n\n");
|
|
printf("\tfunc [f] - Show all functions\n");
|
|
printf("\tfunc* [f*] - Choose a function.\n\n");
|
|
printf("\texit [q] - Quite the program.\n\n\n");
|
|
}
|
|
|
|
void setMenu(void){
|
|
clear();
|
|
}
|
|
|
|
void funcMenu(void){
|
|
clear();
|
|
}
|