SynopsisReturns the next group name found in the group table after the given group name. Prototype#include "um.h" char_t *umGetNextGroup(char_t * lastGroup); Parameters
DescriptionThe returned string is a pointer to the data stored in the group table. Return ValueumGetNextGroup returns a pointer to the group name, or a NULL on error. Examplechar_t *group = umGetFirstName(); while (group) { group = umGetNextGroup(group); } See Also |