関数integerParameterNotPositive マニュアル

(The documentation of function integerParameterNotPositive)

Last Update: 2022/9/2


◆機能・用途(Purpose)

整数パラメータの値が正でなければならない旨の エラーメッセージを出力してプログラムを終了する。
Display a message to inform that the value of an integer parameter must be positive, and finish the program as an error.


◆形式(Format)

#include <argument.h>
inline void integerParameterNotPositive
(const char ∗parameterName,const int parameterValue)


◆引数(Arguments)

parameterName パラメータ名。
A parameter name.
parameterValue パラメータ値。
The value of the parameter.


◆表示するメッセージ (The message displayed)

エラー : パラメータparameterNameの値として parameterValueが指定されましたが、 この値は正でなければなりません。
ERROR : parameterValue was specified for parameter "parameterName", which must be positive.


◆使用例(Example)

if(N<=0){
     integerParameterNotPositive("N", N);
}