Si prosegue con le modifiche per l'inclusione degli esempi di codice.
[gapil.git] / listati / passwd.h
diff --git a/listati/passwd.h b/listati/passwd.h
new file mode 100644 (file)
index 0000000..8be4a4b
--- /dev/null
@@ -0,0 +1,9 @@
+struct passwd {
+    char    *pw_name;       /* user name */
+    char    *pw_passwd;     /* user password */
+    uid_t   pw_uid;         /* user id */
+    gid_t   pw_gid;         /* group id */
+    char    *pw_gecos;      /* real name */
+    char    *pw_dir;        /* home directory */
+    char    *pw_shell;      /* shell program */
+};