blob: 985c6293f9d51285689e24ad518bf0e38404e67a [file] [log] [blame]
Raman Tenneti6f0f8442020-12-01 05:06:471//===-- Implementation header of mktime -------------------------*- C++ -*-===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIBC_SRC_TIME_MKTIME_H
10#define LLVM_LIBC_SRC_TIME_MKTIME_H
11
Michael Jonesf9c23772025-01-08 20:28:5012#include "hdr/types/struct_tm.h"
13#include "hdr/types/time_t.h"
Petr Hosek5ff3ff32024-07-12 16:28:4114#include "src/__support/macros/config.h"
Raman Tenneti6f0f8442020-12-01 05:06:4715
Petr Hosek5ff3ff32024-07-12 16:28:4116namespace LIBC_NAMESPACE_DECL {
Raman Tenneti6f0f8442020-12-01 05:06:4717
18time_t mktime(struct tm *t1);
19
Petr Hosek5ff3ff32024-07-12 16:28:4120} // namespace LIBC_NAMESPACE_DECL
Raman Tenneti6f0f8442020-12-01 05:06:4721
22#endif // LLVM_LIBC_SRC_TIME_MKTIME_H