PxBcmp()
Compare two byte areas.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
PxInt_t PxBcmp(PxUChar_t const *s, PxUChar_t const *d, PxSize_t len);
- ARGUMENTS
|
|
|
|
|
- RETURN VALUES
-
-
0
if the compare byte areas are equal -
Nonzero
value if the compare byte areas are not equal
-
- DESCRIPTION
-
PxBcmp compares the byte areas of length
len
starting ats
ord
, respectively. It returns0
, if they are equal, and nonzero otherwise.
- USAGE
-
#include "pxdef.h" PxInt_t comp = PxBcmp(str1, str2, length);