.... \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
\fBUI_get_string_type() is used to retrieve the type of the given \fBUI_STRING.
\fBUI_get_input_flags() is used to retrieve the flags associated with the given UI_STRING.
\fBUI_get0_output_string() is used to retrieve the actual string to output (prompt, info, error, ...).
\fBUI_get0_action_string() is used to retrieve the action description associated with a UIT_BOOLEAN type UI_STRING. For all other UI_STRING types, NULL is returned. See UI_add_input_boolean\|(3).
\fBUI_get0_result_string() and UI_get_result_string_length() are used to retrieve the result of a prompt and its length. This is only useful for UIT_PROMPT and UIT_VERIFY type strings. For all other UI_STRING types, UI_get0_result_string() returns NULL and UI_get_result_string_length() returns -1.
\fBUI_get0_test_string() is used to retrieve the string to compare the prompt result with. This is only useful for UIT_VERIFY type strings. For all other UI_STRING types, NULL is returned.
\fBUI_get_result_minsize() and UI_get_result_maxsize() are used to retrieve the minimum and maximum required size of the result. This is only useful for UIT_PROMPT and UIT_VERIFY type strings. For all other UI_STRING types, -1 is returned.
\fBUI_set_result_ex() is used to set the result value of a prompt and its length. For UIT_PROMPT and UIT_VERIFY type UI strings, this sets the result retrievable with UI_get0_result_string() by copying the contents of result if its length fits the minimum and maximum size requirements. For UIT_BOOLEAN type UI strings, this sets the first character of the result retrievable with UI_get0_result_string() to the first \fBok_char given with UI_add_input_boolean() or UI_dup_input_boolean() if the result matched any of them, or the first of the \fBcancel_chars if the result matched any of them, otherwise it\*(Aqs set to the NUL char \*(C`\e0\*(C'. See UI_add_input_boolean\|(3) for more information on ok_chars and \fBcancel_chars.
\fBUI_set_result() does the same thing as UI_set_result_ex(), but calculates its length internally. It expects the string to be terminated with a NUL byte, and is therefore only useful with normal C strings.
\fBUI_get_input_flags() returns the UI string flags.
\fBUI_get0_output_string() returns the UI string output string.
\fBUI_get0_action_string() returns the UI string action description string for UIT_BOOLEAN type UI strings, NULL for any other type.
\fBUI_get0_result_string() returns the UI string result buffer for \fBUIT_PROMPT and UIT_VERIFY type UI strings, NULL for any other type.
\fBUI_get_result_string_length() returns the UI string result buffer\*(Aqs content length for UIT_PROMPT and UIT_VERIFY type UI strings, \-1 for any other type.
\fBUI_get0_test_string() returns the UI string action description string for UIT_VERIFY type UI strings, NULL for any other type.
\fBUI_get_result_minsize() returns the minimum allowed result size for the UI string for UIT_PROMPT and UIT_VERIFY type strings, \-1 for any other type.
\fBUI_get_result_maxsize() returns the minimum allowed result size for the UI string for UIT_PROMPT and UIT_VERIFY type strings, \-1 for any other type.
\fBUI_set_result() returns 0 on success or when the UI string is of any type other than UIT_PROMPT, UIT_VERIFY or UIT_BOOLEAN, -1 on error.
Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>.