envname | 環境変数の名前を表す文字列。 A string that represents the name of an environmental variable. |
条件 Condition |
戻り値/動作 Return value or behaviour of the function |
envname=NULLの場合 In case of envname=NULL |
プログラムをエラー終了する。 The program finishes as an error. |
envnameの文字列長が0の場合 In case where the string length of envname is zero |
プログラムをエラー終了する。 The program finishes as an error. |
文字列envnameが表す環境変数が定義されていない
(関数getenvの戻り値がNULL)場合 In case where the environmental variable represented by the string envname is not defined (judged by NULL return value of function getenv) |
プログラムをエラー終了する。 The program finishes as an error. |
環境変数の値がtrueまたはyesの場合 In case where the value of the environmental variable is true or yes |
戻り値としてtrueを返す。 The function returns true. |
環境変数の値がfalseまたはnoの場合 In case where the value of the environmental variable is false or no |
戻り値としてfalseを返す。 The function returns false. |
その他の場合 The other cases |
プログラムをエラー終了する。 The program finishes as an error. |