MCPcopy Create free account
hub / github.com/coreutils/coreutils / timetostr

Function timetostr

src/system.h:909–915  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

907#include "inttostr.h"
908
909static inline char *
910timetostr (time_t t, char *buf)
911{
912 return (TYPE_SIGNED (time_t)
913 ? imaxtostr (t, buf)
914 : umaxtostr (t, buf));
915}
916
917static inline char *
918bad_cast (char const *s)

Callers 7

time_stringFunction · 0.85
init_headerFunction · 0.85
print_sizeFunction · 0.85
time_stringFunction · 0.85
print_long_formatFunction · 0.85
show_dateFunction · 0.85
human_timeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected