Functions | |
void | Show_System_Options (char *list) |
void | Show_One_System_Option (const char *type, char *value) |
void Show_System_Options | ( | char * | list | ) |
Examines the current list of debugging/control "system options".
list | - A string variable that will receive a list of the current option settings. Passed by reference in all languages. Returned to user. |
Show_One_System_Option() will return the current setting for one particular system option, in the style of the "Show One Attribute" routines. For example,
Show_One_System_Option ("warnings", value)would set value to either "on" or "off".
void Show_One_System_Option | ( | const char * | type, | |
char * | value | |||
) |
Similar to Show_System_Options(), but returns the value of a single attribute in the currently open segment.
type | - The name of a single option that you want to inquire about. | |
value | - A string variable that will receive the current value of type. Passed by reference in all languages. Returned to user. |