/** * D header file for OpenBSD pwd.h. * * Copyright: Copyright © 2022, The D Language Foundation * License: Boost License 1.0. * Authors: Brian Callahan */ module core.sys.openbsd.pwd; version (OpenBSD): extern (C): nothrow: @nogc: public import core.sys.posix.pwd; import core.sys.posix.sys.types : uid_t; passwd* getpwnam_shadow(scope const char*); passwd* getpwuid_shadow(uid_t);