Add and first inti c sbn projects ass

This commit is contained in:
2020-07-31 17:49:59 +07:00
parent e02f057a46
commit 21c56efbd1
14 changed files with 215 additions and 0 deletions

2
util/constants.h Normal file
View 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
View 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
View File

@@ -0,0 +1,9 @@
#include "stdlib.h"
void clrscr() {
// for linux or unix only
// system("clear");
// for windows os only
// system("cls");
}