C++ library for translating between absolute and civil times
C++ library for translating between absolute and civil times
cctz$ g++ -o myapp myapp.cpp -lcctz$ cat > example.cpp << 'EOF'
#include "cctz/civil_time.h"
using namespace cctz;
int main() {
civil_second cs(2023, 1, 15, 12, 30, 45);
}
EOF$ brew info cctz && brew --prefix cctz