| 30 | } |
| 31 | |
| 32 | std::string GetLocalizedMyPositionBookmarkName() |
| 33 | { |
| 34 | std::time_t t = std::time(nullptr); |
| 35 | char buf[100] = {0}; |
| 36 | (void)std::strftime(buf, sizeof(buf), "%Ec", std::localtime(&t)); |
| 37 | return buf; |
| 38 | } |
| 39 | } // namespace platform |
no outgoing calls
no test coverage detected