progress on compiler errors

This commit is contained in:
ed
2025-02-08 22:36:11 -05:00
parent 835bfe654b
commit 3b12268f46
31 changed files with 535 additions and 468 deletions
+6 -6
View File
@@ -6,7 +6,8 @@
////////////////////////////////
//~ allen: Time
typedef enum WeekDay
typedef enum WeekDay WeekDay;
enum Weekday
{
WeekDay_Sun,
WeekDay_Mon,
@@ -16,10 +17,10 @@ typedef enum WeekDay
WeekDay_Fri,
WeekDay_Sat,
WeekDay_COUNT,
}
WeekDay;
};
typedef enum Month
typedef enum Month Month;
enum Month
{
Month_Jan,
Month_Feb,
@@ -34,8 +35,7 @@ typedef enum Month
Month_Nov,
Month_Dec,
Month_COUNT,
}
Month;
};
typedef struct DateTime DateTime;
struct DateTime