uuid_equal-determines if two UUIDs are equal
#include <dce/uuid.h>
boolean32 uuid_equal(
uuid_t *uuid1,
uuid_t *uuid2,
unsigned32 *status);
Input
- uuid1
- A pointer to a UUID. This UUID is compared with the UUID specified in the uuid2 argument.
- uuid2
- A pointer to a UUID. This UUID is compared with the UUID specified in the uuid1 argument.
Output
- status
- Returns the status code from this routine. The status code indicates whether the routine completed successfully, or if not, why not.
Possible status codes and their meanings include:
- uuid_s_ok
- Success.
The uuid_equal() routine compares two UUIDs and determines whether they are equal.
If successful, returns one of the following constants:
- TRUE
- The uuid1 argument is equal to the uuid2 argument.
- FALSE
- The uuid1 argument is not equal to the uuid2 argument.
uuid_compare().
Please note that the html version of this specification may contain formatting aberrations. The definitive version is available as an electronic publication on CD-ROM from The Open Group.
Contents | Next section | Index |