Load consecutive one‐byte integers from the specified buffer into the specified variables.
Synopsis
Declared in <bslx_marshallingutil.h>
static
void
getArrayInt8(
char* variables,
char const* buffer,
int numVariables);
Description
Load into the specified variables the consecutive one‐byte, two's complement integers comprised of each of the specified numVariables leading one‐byte sequences in the specified buffer. The behavior is undefined unless variables has sufficient capacity, buffer has sufficient contents, and 0 <= numVariables.
Parameters
Name |
Description |
variables |
array receiving host‐order one‐byte integers |
buffer |
source buffer |
numVariables |
number of values to read |
Created with MrDocs