In this answer I am initializing a tm
like this:
tm a{0, 0, 0, 15, 5, 2006 - 1900};
Using the bare numbers is a bit unclear, but I found it less unclear than:
tm a{0, 0, 0, 15, 5, 106};
What I'd like is if there was a symbol defined as 1900
in the standard that I could use, because the most understandable would be something like this:
tm a{0, 0, 0, 15, 5, 2006 - TM_YEAR_ORIGIN};
Do I have to define that locally or is such a thing defined in the standard?