getInt8 overloads
Declared in <bslx_marshallingutil.h>
Load the one-byte integer from the specified buffer into the specified variable.
static
void
getInt8(
char* variable,
char const* buffer);
» more...
Same as the related overload for signed char *variable.
static
void
getInt8(
signed char* variable,
char const* buffer);
» more...
Same as the related overload for unsigned char *variable.
static
void
getInt8(
unsigned char* variable,
char const* buffer);
» more...
| Name | Description |
|---|---|
| variable | destination for the host-order one-byte integer |
| buffer | source buffer |