Add and first inti c sbn projects ass
This commit is contained in:
2
util/constants.h
Normal file
2
util/constants.h
Normal file
@@ -0,0 +1,2 @@
|
||||
const char *WELCOME_FILE_DATA = "./data/welcome.txt";
|
||||
const char *STUDENT_FILE_DATA = "./data/students.txt";
|
||||
6
util/define.h
Normal file
6
util/define.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#define MENU_1 1
|
||||
#define MENU_2 2
|
||||
#define MENU_3 3
|
||||
#define MENU_4 4
|
||||
#define MENU_5 5
|
||||
#define MENU_6 6
|
||||
9
util/utils.c
Normal file
9
util/utils.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "stdlib.h"
|
||||
|
||||
void clrscr() {
|
||||
// for linux or unix only
|
||||
// system("clear");
|
||||
|
||||
// for windows os only
|
||||
// system("cls");
|
||||
}
|
||||
Reference in New Issue
Block a user