![]() |
![]()
| ![]() |
![]()
LIBRARY#include <statsf-list.h> -lbasic-stats -lxtend SYNOPSISint statsf_list_set_count(statsf_list_t *statsf_list_ptr, unsigned new_count) ARGUMENTSstatsf_list_ptr Pointer to the structure to set new_count The new value for count DESCRIPTIONMutator for count member in a statsf_list_t structure. Use this function to set count in a statsf_list_t object from non-member functions. This function performs a direct assignment for scalar or pointer structure members. If count is a pointer, data previously pointed to should be freed before calling this function to avoid memory leaks. RETURN VALUESSTATSF_LIST_DATA_OK if the new value is acceptable and assigned STATSF_LIST_DATA_OUT_OF_RANGE otherwise EXAMPLESstatsf_list_t statsf_list; unsigned new_count; if ( statsf_list_set_count(&statsf_list, new_count) SEE ALSO(3)
|