gcvt method

Pointer<Int8> gcvt(
  1. double __value,
  2. int __ndigit,
  3. Pointer<Int8> __buf
)

Implementation

ffi.Pointer<ffi.Int8> gcvt(
  double __value,
  int __ndigit,
  ffi.Pointer<ffi.Int8> __buf,
) {
  return _gcvt(
    __value,
    __ndigit,
    __buf,
  );
}