// Replace given variable without sending an state-change event.
static int replace_var(transport_variable_t varnum, const char *new_value) {
	return VariableContainer_change(state_variables_, varnum, new_value);
}
Example #2
0
// Replace given variable without sending an state-change event.
static void replace_var(control_variable_t varnum, const char *new_value) {
	VariableContainer_change(state_variables_, varnum, new_value);
}