strtod method

double strtod(
  1. Pointer<Int8> _String,
  2. Pointer<Pointer<Int8>> _EndPtr
)

Implementation

double strtod(
  ffi.Pointer<ffi.Int8> _String,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> _EndPtr,
) {
  return (_strtod ??=
      _dylib.lookupFunction<_c_strtod, _dart_strtod>('strtod'))(
    _String,
    _EndPtr,
  );
}