strtod method

double strtod(
  1. Pointer<Char> __nptr,
  2. Pointer<Pointer<Char>> __endptr
)

Implementation

double strtod(
  ffi.Pointer<ffi.Char> __nptr,
  ffi.Pointer<ffi.Pointer<ffi.Char>> __endptr,
) {
  return _strtod(
    __nptr,
    __endptr,
  );
}