unsetenv method

int unsetenv(
  1. Pointer<Char> __name
)

Implementation

int unsetenv(
  ffi.Pointer<ffi.Char> __name,
) {
  return _unsetenv(
    __name,
  );
}