関数correct_humanTime マニュアル
(The documentation of function
correct_humanTime
)
Last Update: 2023/6/12
◆機能・用途
(Purpose)
struct humanTime型構造体を正しい値に修正する。 例えば01:59:61を02:00:01に、1月32日を2月1日に修正する。
Correct the value of a
struct humanTime
-type structure; for example from 01:59:61 to 02:00:01 and from Jan 32 to Feb 1.
◆形式
(Format)
#include <mytime.h>
inline struct humanTime correct_humanTime(const struct humanTime original)
◆引数
(Arguments)
original
修正前の日付・時刻。
The date and time to be corrected.
◆戻り値
(Return value)
引数originalが表す日付・時刻を正しい値に修正した日付・時刻。
The date and time corrected from argument
original
.
◆使用例
(Example)
struct humanTime original={2011,1,32,1,59,61.0};
struct humanTime corrected=correct_humanTime(original);