brintos

brintos / llvm-project-archived public Read only

0
0
Text · 800 B · 8ec3f89 Raw
29 lines · c
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// For information see https://libcxx.llvm.org/DesignDocs/TimeZone.html10 11#ifndef _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H12#define _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H13 14#include <chrono>15 16#include "types_private.h"17 18_LIBCPP_BEGIN_NAMESPACE_STD19 20namespace chrono {21 22void __init_tzdb(tzdb& __tzdb, __tz::__rules_storage_type& __rules);23 24} // namespace chrono25 26_LIBCPP_END_NAMESPACE_STD27 28#endif // _LIBCPP_SRC_INCLUDE_TZDB_TZ_PRIVATE_H29