Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数getopt_longを使用してコマンド ライン オプションを取得しています。無効なオプションが指定された場合のエラーを無視したい。現在、次のようなエラーを stderr に出力しています。
getopt_long
invalid option -- 's'
opterrgetopt.h には、変数stderr を 0 に設定するとエラーが出力されないようにする変数があります。
opterr
stderr
0に設定するだけです:
extern int opterr; opterr = 0;