You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
13 lines
451 B
#ifndef THEADMIRALS_CONVERT_TIME_H
|
|
#define THEADMIRALS_CONVERT_TIME_H
|
|
|
|
double converter_sec_to_min(double sec);
|
|
double converter_min_to_sec(double min);
|
|
double converter_hour_to_min(double hour);
|
|
double converter_min_to_hour(double min);
|
|
double converter_hour_in_sec(double hour);
|
|
double converter_sec_in_hour(double sec);
|
|
double converter_days_to_years(double days);
|
|
double converter_years_to_days(double years);
|
|
|
|
#endif //THEADMIRALS_CONVERT_TIME_H
|