From d4b55b23425b2098b4e74a9cf90d2d92dc470736 Mon Sep 17 00:00:00 2001 From: katherine Date: Wed, 11 Dec 2019 13:35:48 -0700 Subject: normalise type names --- src/calendar.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/calendar.h') diff --git a/src/calendar.h b/src/calendar.h index ed54c4f..060ad99 100644 --- a/src/calendar.h +++ b/src/calendar.h @@ -1,17 +1,17 @@ #ifndef EVERY_CALENDAR_H #define EVERY_CALENDAR_H -enum every_calendar_entry_type { - EVERY_CALENDAR_ENTRY_TYPE_ON, - EVERY_CALENDAR_ENTRY_TYPE_EVERY, +enum calendar_entry_type_e { + CALENDAR_ENTRY_TYPE_ON, + CALENDAR_ENTRY_TYPE_EVERY, }; -struct every_calendar_entry { - enum every_calendar_entry_type type; +struct calendar_entry_s { + enum calendar_entry_type_e type; }; -struct every_calendar { - struct every_calendar_entry *entries; +struct calendar_s { + struct calendar_entry_s *entries; }; #endif -- cgit v1.2.3