関数argumentMissing マニュアル

(The documentation of function argumentMissing)

Last Update: 2022/9/2


◆機能・用途(Purpose)

コマンドライン引数が不足している旨の エラーメッセージを出力してプログラムを終了する。
Display a message to inform that command-line arguments are missing, and finish the program as an error.


◆形式(Format)

#include <argument.h>
inline void argumentMissing
(const int n,const char ∗parameterNameJapanese, const char ∗parameterNameEnglish)


◆引数(Arguments)

n 不足している引数番号。
The missing argument number.
parameterNameJapanese 不足している引数のパラメータ名(日本語)。 ""にすればパラメータ名無しでのメッセージ出力となる。
The parameter name (Japanese) of the missing argument. Using "" results in a message with no parameter name.
parameterNameEnglish 不足している引数のパラメータ名(英語)。 ""にすればパラメータ名無しでのメッセージ出力となる。
The parameter name (English) of the missing argument. Using "" results in a message with no parameter name.


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


◆使用例(Example)

if(ARGC<=1){
     argumentMissing (1, "入力ファイル名", "the input file name");
}else if(ARGC<=2){
     argumentMissing (2, "出力ファイル名", "the output file name");
}