#ifndef EVERY_CALENDAR_H #define EVERY_CALENDAR_H enum calendar_entry_type_e { CALENDAR_ENTRY_TYPE_ON, CALENDAR_ENTRY_TYPE_EVERY, }; struct calendar_entry_s { enum calendar_entry_type_e type; }; struct calendar_s { struct calendar_entry_s *entries; }; #endif