mirror of
https://github.com/caozhiyi/CppNet.git
synced 2026-01-12 00:19:01 +08:00
19 lines
338 B
C++
19 lines
338 B
C++
// Use of this source code is governed by a BSD 3-Clause License
|
|
// that can be found in the LICENSE file.
|
|
|
|
// Author: caozhiyi (caozhiyi5@gmail.com)
|
|
|
|
#ifndef COMMON_OS_CONVERT
|
|
#define COMMON_OS_CONVERT
|
|
|
|
#include <cstdint>
|
|
|
|
namespace cppnet {
|
|
|
|
void Localtime(const uint64_t* time, void* out_tm);
|
|
|
|
char* ErrnoInfo(uint32_t err);
|
|
|
|
}
|
|
|
|
#endif |