1 2 3 4 5 6 7 8 9 10
#ifndef EVERY_CALENDAR_H #define EVERY_CALENDAR_H #include "entry.h" struct calendar_s { struct entry_s *entries; }; #endif