Module Core_unix.Passwd


module Passwd: sig .. end
Structure of entries in the passwd database


type t = {
   name : string;
   passwd : string;
   uid : int;
   gid : int;
   gecos : string;
   dir : string;
   shell : string;
}
val getbyname : string -> t option
val getbyname_exn : string -> t
val getbyuid : int -> t option
val getbyuid_exn : int -> t
val setpwent : unit -> unit
val endpwent : unit -> unit
val getpwent : unit -> t option
val getpwent_exn : unit -> t