update project structure & create Makefile

This commit is contained in:
SowinskiBraeden committed 2024-10-04 21:48:27 -07:00
1 parent b982588fb2
commit 0b14153113
13 files changed
+781 -667

No files matched your search

+11
View File
@@ -0,0 +1,11 @@
#include "courses.h"
#include "students.h"
#ifndef JSON_H_INCLUDED
#define JSON_H_INCLUDED
int createDirectory(const char *dir_name);
int writeStudentsToJson(STUDENT *students, size_t numberOfStudents, char output_dir[]);
int writeCoursesToJson(COURSE *courses, size_t numberOfCourses, char output_dir[]);
#endif