setgrent function

void setgrent()

Rewind the group-file stream.

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

Implementation

void setgrent() {
  clearErrno();
  _setgrent ??= Libc()
      .dylib
      .lookupFunction<ffi.Void Function(), _dart_setgrent>('setgrent');
  _setgrent!();
}