does include 1900 (see Date.cpp)
| 79 | int getMonth() const { return m_tm.tm_mon + 1; } // makes it 1 .. 12 |
| 80 | int getYear() const { return m_tm.tm_year; } // does include 1900 (see Date.cpp) |
| 81 | int getWeekday() const { return m_tm.tm_wday + 1; } // makes it 1 .. 7 |
| 82 | int getYearday() const { return m_tm.tm_yday + 1; } // makes it 1 .. 366 |
| 83 | |
| 84 | // 1900 as per POSIX mktime() et al |
no outgoing calls
no test coverage detected