Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/eggert/tz
/ gmtime_r
Function
gmtime_r
zdump.c:168–177 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
166
# define gmtime_r zdump_gmtime_r
167
168
static struct tm *
169
gmtime_r(time_t *tp, struct tm *tmp)
170
{
171
struct tm *r = gmtime(tp);
172
if (r) {
173
*tmp = *r;
174
r = tmp;
175
}
176
return r;
177
}
178
179
#endif
180
Callers
1
my_gmtime_r
Function · 0.70
Calls
1
gmtime
Function · 0.85
Tested by
no test coverage detected