putenv method

int putenv(
  1. Pointer<Int8> __string
)

Implementation

int putenv(
  ffi.Pointer<ffi.Int8> __string,
) {
  return _putenv(
    __string,
  );
}