Retrieve an array value from a configuration structure
#include <firestring.h>
-lfirestring
const char *firestring_conf_find_next(struct firestring_conf_t *config, const char *var, const char *prev)
firestring_conf_find_next() retrieves a subsequent value of the variable var from the configuration structure config. prev is a pointer previously returned by firestring_conf_find() or firestring_conf_find_next(). If prev is NULL, firestring_conf_find_next() acts like firestring_conf_find().
Returns a const char * to the next value of the variable, or NULL if there are no further values for var.
Ian Gulliver <[email protected]>