stringwrite_config_list
Name
stringwrite_config_list — Output a list to the system console
Synopsis
#include "misc/ec_list.h"
| string * **stringwrite_config_list** (
| str, | |
| | label, | |
| | value, | |
| | xml)
; | |
string * <var class="pdparam">str</var>
;
const char * <var class="pdparam">label</var>
;
eclist_node * <var class="pdparam">value</var>
;
int <var class="pdparam">xml</var>
;
Description
Output a list to the system console.
Note
This function is deprecated in Momentum version 3.0. It is suitable only for supporting legacy modules doing 'write config'.
- str
-
An ec_string.
- label
-
A character array, typically an option name.
- list
-
The eclist_node you wish to output.
- xml
-
Whether or not to render as XML. Set this value to
0
or1
.
This function returns an ec_string terminated by a newline.
It is legal to call this function in any thread.