14 lines
232 B
C++
14 lines
232 B
C++
//
|
|
// Created by theskywinds on 25-06-25.
|
|
//
|
|
|
|
#ifndef DISTIME_H
|
|
#define DISTIME_H
|
|
|
|
#include <ctime>
|
|
|
|
namespace distime {
|
|
void parseTimeInput(std::tm &resultTime, const std::tm ¤tTime, bool shortTime);
|
|
}
|
|
#endif //DISTIME_H
|