関数check_DegMinSec マニュアル

(The documentation of function check_DegMinSec)

Last Update: 2021/12/24


◆機能・用途(Purpose)

struct DegMinSec型構造体の値が正しく設定されているかをチェックする。
Check if the value of a struct DegMinSec-type structure is correct.


◆形式(Format)

#include <coordinate.h>
inline void check_DegMinSec(const struct DegMinSec coordinate)


◆引数(Arguments)

coordinate チェックしたい座標。
The coordinate to be checked.


◆動作(Behaviour)

この関数では引数coordinateが以下の全ての条件を満たしているか否かをチェックする。 いずれかの条件が満たされていない場合はプログラムをエラー終了する。
This function checks if the argument coordinate satisfies all the requirements below. If one of the requirements is not met, the program finishes as an error.



◆使用例(Example)

struct DegMinSec coordinate;
check_DegMinSec(coordinate);