MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / get_local_time_string

Function get_local_time_string

libcppcryptfs/util/KeyCache.cpp:33–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32
33static string get_local_time_string()
34{
35 SYSTEMTIME st;
36 GetLocalTime(&st);
37 char buf[16];
38 sprintf_s(buf, "%02d:%02d:%02d\n", st.wHour, st.wMinute, st.wSecond);
39
40 return string(buf);
41}
42
43
44KeyCache::KeyCache()

Callers 2

EnableMethod · 0.85
ClearInternalMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected