From ef0a063a84282f74a9da4a899c555037972873a9 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sat, 16 Jan 2016 19:14:55 -0500 Subject: Split document into seperate files by section. --- posix1003_1/system_database.rst | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 posix1003_1/system_database.rst (limited to 'posix1003_1/system_database.rst') diff --git a/posix1003_1/system_database.rst b/posix1003_1/system_database.rst new file mode 100644 index 0000000..0affa90 --- /dev/null +++ b/posix1003_1/system_database.rst @@ -0,0 +1,41 @@ +System Databases +################ + +System Databases Section +======================== + +Database Access +=============== + +Group Database Access +--------------------- + +.. code:: c + + struct group, Type, Implemented + getgrgid(), Function, Implemented + getgrgid_r(), Function, Implemented + getgrname(), Function, Implemented + getgrnam_r(), Function, Implemented + +NOTE: Creates /etc/group if none exists. + +User Database Access +-------------------- + +.. code:: c + + struct passwd, Type, Implemented + getpwuid(), Function, Implemented + getpwuid_r(), Function, Implemented + getpwnam(), Function, Implemented + getpwnam_r(), Function, Implemented + +NOTE: Creates /etc/passwd if none exists. + +.. COMMENT: COPYRIGHT (c) 1988-2002. + +.. COMMENT: On-Line Applications Research Corporation (OAR). + +.. COMMENT: All rights reserved. + -- cgit v1.2.3