関数parameterEmpty マニュアル
(The documentation of function
parameterEmpty
)
Last Update: 2022/9/2
◆機能・用途
(Purpose)
パラメータの値が空である旨の エラーメッセージを出力してプログラムを終了する。
Display a message to inform that the value of a parameter is empty, and finish the program as an error.
◆形式
(Format)
#include <argument.h>
inline void parameterEmpty
(const char ∗parameterName)
◆引数
(Arguments)
parameterName
パラメータ名。
A parameter name.
◆表示するメッセージ
(The message displayed)
エラー : パラメータ"
parameterName
"の値が空です。
ERROR : The value of parameter "
parameterName
" is empty.
◆使用例
(Example)
strcpy(inputfile,"");
for(n=1;n<ARGC;n++){
if(strncmp(ARGV[n],"--inputfile=", strlen("--inputfile="))==0){
strcpy(inputfile,&(ARGV[n][strlen("--inputfile=")]));
}
}
if(strcmp(inputfile,"")==0){
parameterEmpty("inputfile");
}