ADC Home > Reference Library > Reference > Darwin > Miscellaneous User Space API Reference
|
container.h |
Includes: |
netsnmp_compare_cstring |
int netsnmp_compare_cstring( const void *lhs, const void *rhs);
first data element is a 'char *'
netsnmp_compare_mem |
int netsnmp_compare_mem( const char *lhs, size_t lhs_len, const char *rhs, size_t rhs_len);
useful for octet strings
netsnmp_compare_netsnmp_index |
int netsnmp_compare_netsnmp_index( const void *lhs, const void *rhs);
first data element is a 'netsnmp_index'
netsnmp_container_simple_free |
void netsnmp_container_simple_free( void *data, void *context);
for_each callback to call free on data item
while |
while( x->prev) x = x->prev; while( x)
start at first container
while( x) |
while( x->prev) x = x->prev; while( x)
start at first container
while( x) |
while( x->next) x = x->next; while( x)
start at last container
while( x) |
while( x->next) x = x->next; while( x)
start at last container
while(x -) |
while( x->next) x = x->next; while( x->prev)
start at last container