aboutsummaryrefslogtreecommitdiffstats
path: root/src/calendar.h
diff options
context:
space:
mode:
authorkatherine <ageha@airen-no-jikken.icu>2019-12-11 13:35:48 -0700
committerkatherine <ageha@airen-no-jikken.icu>2019-12-11 13:35:48 -0700
commitd4b55b23425b2098b4e74a9cf90d2d92dc470736 (patch)
tree125fc06dddfc4fe478e3cb819873197d35877bd3 /src/calendar.h
parentd7d0f8f5d00aaaee8cf880047920b6ce74776982 (diff)
downloadevery-d4b55b23425b2098b4e74a9cf90d2d92dc470736.tar.gz
normalise type names
Diffstat (limited to 'src/calendar.h')
-rw-r--r--src/calendar.h14
1 files changed, 7 insertions, 7 deletions
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