@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
time.h
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef _PICO_LLVM_LIBC_TIME_H
8#define _PICO_LLVM_LIBC_TIME_H
9
10#include <__llvm-libc-common.h>
11
12#include <llvm-libc-types/struct_tm.h>
13#include <llvm-libc-types/time_t.h>
14
15__BEGIN_C_DECLS
16
17struct tm* localtime_r(const time_t* timer, struct tm* buf);
18
19__END_C_DECLS
20
21#include_next <time.h>
22
23#endif // _PICO_LLVM_LIBC_TIME_H