# Copyright (c) 2023 Yuki Kimoto # MIT License class Sys::User::Passwd : pointer { version_from Sys; native method pw_name : string (); native method pw_passwd : string (); native method pw_uid : int (); native method pw_gid : int (); native method pw_gecos : string (); native method pw_dir : string (); native method pw_shell : string (); }