From 72a62ad88f82fe1ffee50024db4dd0f3fa5806f7 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Thu, 3 Nov 2016 16:58:08 +1100 Subject: Rename all manuals with an _ to have a -. It helps released naming of files. --- posix1003-1/system_database.rst | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 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..072cb04 --- /dev/null +++ b/posix1003-1/system_database.rst @@ -0,0 +1,43 @@ +.. comment SPDX-License-Identifier: CC-BY-SA-4.0 + +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