setpwent function

void setpwent()

Rewind the user database stream.

This function is a possible cancellation point and therefore not marked with __THROW.

Implementation

void setpwent() {
  _setpwent ??= Libc()
      .dylib
      .lookupFunction<ffi.Void Function(), _dart_setpwent>('setpwent');
  return _setpwent!();
}