Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
statsf_list_set_count(3)    Library Functions Manual	statsf_list_set_count(3)

LIBRARY
     #include <statsf-list.h>
     -lbasic-stats -lxtend

SYNOPSIS
     int     statsf_list_set_count(statsf_list_t *statsf_list_ptr, unsigned new_count)

ARGUMENTS
     statsf_list_ptr Pointer to the structure to set
     new_count	     The new value for count

DESCRIPTION
     Mutator  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 mem-
     bers.  If count is a pointer, data previously pointed to  should  be  freed
     before calling this function to avoid memory leaks.

RETURN VALUES
     STATSF_LIST_DATA_OK   if	the   new   value  is  acceptable  and	assigned
     STATSF_LIST_DATA_OUT_OF_RANGE otherwise

EXAMPLES
     statsf_list_t   statsf_list;
     unsigned	     new_count;

     if ( statsf_list_set_count(&statsf_list, new_count)
	     == STATSF_LIST_DATA_OK )
     {
     }

SEE ALSO
     (3)

							statsf_list_set_count(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=statsf_list_set_count&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help