14 lines
216 B
C
14 lines
216 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);
|
||
|
|
}
|
||
|
|
#endif //DISTIME_H
|