[#BloombergLP-bdldfp-DecimalImpUtil_IntelDfp-parse32-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp.adoc[DecimalImpUtil_IntelDfp]::parse32 :relfileprefix: ../../../ :mrdocs: Parse the specified `string` as a 32 bit decimal floating‐point value and return the result. The parsing is as specified for the `strtod32` function in section 9.6 of the ISO/EIC TR 24732 C Decimal Floating‐Point Technical Report, except that it is unspecified whether the NaNs returned are quiet or signaling. If `string` represents a value that absolute value exceeds the maximum value or is less than the smallest value supported by `ValueType32` type then store the value of the macro `ERANGE` into `errno` and return the value initialized to infinity or zero respectively with the same sign as specified in `string`. The behavior is undefined unless `input` represents a valid 32 bit decimalfloating‐point number in scientific or fixed notation, and no unrelated characters precede (not even whitespace) that textual representation and a terminating nul character immediately follows it. Note that this method does not guarantee the behavior of ISO/EIC TR 24732 C when parsing NaN because the AIX compiler intrinsics return a signaling NaN. == Synopsis Declared in `<bdldfp_decimalimputil_inteldfp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp/ValueType32.adoc[DecimalImpUtil_IntelDfp::ValueType32] parse32(char const* string); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#