mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
16 lines
357 B
C++
16 lines
357 B
C++
#ifndef DATE_H
|
|
#define DATE_H
|
|
|
|
#include <string>
|
|
#include <sys/types.h>
|
|
|
|
/**
|
|
* Format the time as specified.
|
|
* If no format is specified, use format for the top bar.
|
|
* If no time is specified, use the system time.
|
|
* @return std::string containing the time.
|
|
*/
|
|
std::string RetTime(const char *format = nullptr, time_t *raw = nullptr);
|
|
|
|
#endif // DATE_H
|