1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef EVERY_CALENDAR_H #define EVERY_CALENDAR_H #include "entry.h" #include <stdio.h> #include <stdbool.h> struct calendar_s { size_t count, width; struct entry_s *entries; bool err_flag; }; struct calendar_s calendar_parse(FILE *f); #endif