strtod method

double strtod(
  1. Pointer<Char> arg0,
  2. Pointer<Pointer<Char>> arg1
)

Implementation

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