| 97 | /* ── gmtime_r (Windows lacks it) ─────────────────────────────── */ |
| 98 | #ifdef _WIN32 |
| 99 | static inline struct tm *cbm_gmtime_r(const time_t *timep, struct tm *result) { |
| 100 | return gmtime_s(result, timep) == 0 ? result : NULL; |
| 101 | } |
| 102 | #else |
| 103 | #define cbm_gmtime_r gmtime_r |
| 104 | #endif |
no outgoing calls
no test coverage detected