All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jdk.internal.sys.posix.Pwd Maven / Gradle / Ivy

package jdk.internal.sys.posix;

import static org.qbicc.runtime.CNative.*;
import static jdk.internal.sys.posix.SysTypes.*;
import static org.qbicc.runtime.stdc.Stddef.*;

@include("")
@define(value = "_POSIX_C_SOURCE", as = "200809L")
public class Pwd {
    public static final class struct_passwd extends object {
        public char_ptr pw_name;
        public uid_t pw_uid;
    }
    public static final class struct_passwd_ptr extends ptr {}

    public static native c_int getpwuid_r(uid_t uuid, ptr pwd, char_ptr buffer, size_t bufsize, ptr> result);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy