umGetFirstUserGoAhead WebServer APIGoAhead EMF

Synopsis

Returns the first user ID found in the user table.

Prototype

 #include "um.h"

 char_t *umGetFirstUser();

Parameters

None

Description

The returned string is a pointer to the data stored in the user table. Use this function with umGetNextUser to retrieve a list of user IDs contained in the user table.

Return Value

umGetFirstUser returns a pointer to the user ID, or a NULL on error.

Example

char_t	*userid = umGetFirstUser();

See Also

umGetNextUser()