myMPD
Internal API documentation
Loading...
Searching...
No Matches
datetime.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2025 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
11#ifndef MYMPD_DATETIME_H
12#define MYMPD_DATETIME_H
13
14#include <time.h>
15
16time_t parse_date(const char *str);
17void readable_time(char *buf, time_t timestamp);
18
19#endif
time_t parse_date(const char *str)
Definition datetime.c:24
void readable_time(char *buf, time_t timestamp)
Definition datetime.c:39