endpwent function

void endpwent()

Close the user database stream.

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

Implementation

void endpwent() {
  _endpwent ??= Libc()
      .dylib
      .lookupFunction<ffi.Void Function(), _dart_endpwent>('endpwent');
  return _endpwent!();
}