uuid_equal(3) — Subroutines
NAME
uuid_equal - Determines if two UUIDs are equal
Used by client, server, or management applications.
SYNOPSIS
#include <dce/uuid.h>
boolean32 uuid_equal(
uuid_t ∗uuid1 ,
uuid_t ∗uuid2 ,
unsigned32 ∗status );
PARAMETERS
Input
uuid1Specifies a pointer to a UUID. This UUID is compared with the UUID specified in uuid2. Supply the value NULL to specify a nil UUID for this argument.
uuid2Specifies a pointer to a UUID. This UUID is compared with the UUID specified in uuid1. Supply the value NULL to specify a nil UUID for this argument.
Output
statusReturns the status code from this routine. This status code indicates whether the routine completed successfully or, if not, why not. The possible status codes and their meanings are as follows:
uuid_s_okSuccess.
uuid_s_bad_version
Bad UUID version.
DESCRIPTION
The uuid_equal routine compares two UUIDs and determines if they are equal.
RETURN VALUES
The possible return values and their meanings are as follows:
trueuuid1 is equal to uuid2. Argument status contains the status code uuid_s_ok.
falseuuid1 is not equal to uuid2.
RELATED INFORMATION
Functions: uuid_compare(3)