package plato

  1. Overview
  2. Docs
type struct_passwd = {
  1. pw_name : string;
  2. pw_passwd : string;
  3. pw_uid : int;
  4. pw_gid : int;
  5. pw_gcos : string;
  6. pw_dir : string;
  7. pw_shell : string;
}
val getpwuid : int -> struct_passwd
val getpwname : string -> struct_passwd
val getpwall : unit -> struct_passwd list