GodMode9i/arm9/source/date.h
2021-11-22 21:02:13 -06:00

19 lines
330 B
C++

#ifndef DATE_H
#define DATE_H
#include <string>
/**
* Get the current time formatted for the top bar.
* @return std::string containing the time.
*/
std::string RetTime();
/**
* Get the current time formatted for filenames.
* @return std::string containing the time.
*/
std::string RetTimeForFilename();
#endif // DATE_H