Finds the next attribute after prevattr in an entry. If you want to iterate through the attributes in an entry, use this function in conjunction with the slapi_entry_first_attr() function.
Syntax
#include "slapi-plugin.h"
int slapi_entry_next_attr( Slapi_Entry *e, Slapi_Attr *prevattr,
Slapi_Attr **attr );
Parameters
The function has the following parameters:
Returns
0 if successful, or -1 if prevattr was the last attribute in the entry.
Example
[To be added]
See Also