Provided by: libbson-doc_1.16.1-1build2_all 

NAME
bson_decimal128_from_string - bson_decimal128_from_string()
SYNOPSIS
bool
bson_decimal128_from_string (const char *string, bson_decimal128_t *dec);
PARAMETERS
• string: A string containing ASCII encoded Decimal128.
• dec: A bson_decimal128_t.
DESCRIPTION
Parses the string containing ascii encoded Decimal128 and initialize the bytes in dec. See the Decimal128
specification for the exact string format.
RETURNS
Returns true if valid Decimal128 string was provided, otherwise false and dec will be set to NaN.
EXAMPLE
bson_decimal128_t dec;
bson_decimal128_from_string ("1.00", &dec);
AUTHOR
MongoDB, Inc
COPYRIGHT
2017-present, MongoDB, Inc
1.16.1 Mar 03, 2020 BSON_DECIMAL128_FROM_STRING(3)