関数yes_no2Bool マニュアル
(The documentation of function
yes_no2Bool
)
Last Update: 2023/6/27
◆機能・用途
(Purpose)
yes, noを表す文字列を_Bool型変数に変換する。
Convert a string that represents
yes
or
no
to a
_Bool
-type variable.
◆形式
(Format)
#include <mystring.h>
inline _Bool yes_no2Bool(const char ∗string)
◆引数
(Arguments)
string
変換したい文字列。
The string to convert.
◆戻り値
(Return value)
引数stringが表す文字列が"yes"ならばtrue、 "no"ならばfalse。 それ以外の場合はエラー終了。
The return value is
true
if the string given by argument is "yes",
false
if "no". In the other cases, the program finishes as an error.
◆使用例
(Example)
char answer_str[10];
_Bool answer_Bool=yes_no2Bool(answer_str);