| 126 | */ |
| 127 | int _tz_offset(const char *tz, time_t t); |
| 128 | static inline int tz_offset(const char *tz) |
| 129 | { |
| 130 | return _tz_offset(tz, time(NULL)); |
| 131 | } |
| 132 | |
| 133 | |
| 134 | /*************** RFC 2445/5545 low-level abstractions ****************/ |
nothing calls this directly
no test coverage detected