Mission Base

Program Base Library Functions

int pbl_memcmp

( void* left, size_t llen, void* right,
  size_t rlen )

Compare two memory buffers, similar to memcmp.

Documentation

Compare two memory buffers, similar to memcmp.

Parameters:
left - first buffer for compare
llen - length of that buffer
right - second buffer for compare
rlen - length of that buffer
Returns:
int rc < 0: left is smaller than right
int rc == 0: left and right are equal
int rc > 0: left is bigger than right

Alphabetic index



This page was generated with the help of DOC++.