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

+17
View File
@@ -0,0 +1,17 @@
#include <stdbool.h>
#include "main.h"
#ifndef CSV_H_INCLUDED
#define CSV_H_INCLUDED
typedef struct {
uint32_t pupilNum;
char crsNo[MAX_COURSE_NO_LEN];
char description[MAX_COURSE_DES_LEN];
bool alternate;
} CSV_LINE;
int count_lines(char data_dir[]);
CSV_LINE *csvReader(char data_dir[], size_t size);
#endif