summaryrefslogtreecommitdiffstats
path: root/posix1003_1/system_database.rst
blob: 0affa90b2511fd4bfad5cff21e9132be64738c0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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.